What are Google Sheets formulas?

A formula is an instruction in a cell that calculates a result from other cells, ranges, or built-in functions. Every formula begins with =. When inputs change, the sheet recalculates so dashboards and models stay live without manual copy-paste. Formulas are the default automation layer inside the grid before Apps Script or add-ons.

When to use it

Use formulas for math, lookups, text cleanup, conditional labels, and live reports that should update whenever someone edits source data.

When to skip it

Skip formulas when a pivot table, filter view, or one-time CSV export is enough. Very complex branching sometimes belongs in Apps Script for readability and permissions.

How it works

  1. 1

    Click a cell, type =, then pick a function or reference other cells like =B2*C2.

  2. 2

    Copy formulas down columns or use dynamic arrays so one formula fills many rows.

  3. 3

    Name important ranges so formulas read =SUM(Revenue) instead of cryptic letters.

  4. 4

    Watch for error tokens like

  5. 5

    Layer QUERY, FILTER, and ARRAYFORMULA when flat SUM rows are not enough for reporting.

  6. 6

    Use the formula generator or function help panel when you know the outcome but not the syntax.

Examples in Google Sheets

Row total

=SUM(B2:D2) adds three columns on a budget row and copies down the table.

Lookup price

=VLOOKUP(SKU, Prices!A:B, 2, FALSE) pulls unit price for an order line from a price list tab.

Status label

=IF(E2>=100%, "On track", "Behind") turns percent complete into plain language for executives.

Build this without starting from a blank cell

Use a Better Sheets tool for Google Sheets formulas, then watch a walkthrough when you want the full pattern.

Better Sheets resources

Common mistakes

  • Hard-coding numbers inside formulas instead of input cells on a Settings tab.
  • Entire-column references A:A on huge sheets, slowing every edit.
  • Mixing text and numbers in one column, breaking SUM and chart axes.
  • Duplicating the same formula thousands of times instead of one spill formula.
  • Sharing models without explaining which cells are inputs versus formula blocks.

Frequently asked questions

Formula vs function?
The formula is the whole = expression. Functions are named operations inside it like SUM or IF.
See all formulas at once?
View > Show formulas toggles the grid to display formula text in every cell.
Formula vs Apps Script?
Formulas recalc in cells for anyone with edit access. Scripts run code for menus, triggers, and external APIs.
Formula vs pivot table?
Pivots summarize visually without cell formulas. Formulas stay live inside model layouts you design.
Why
Misspelled function, wrong locale separator, or a name that Sheets does not recognize.
Convert formula to values?
Copy the range and Paste special > Values only when you need a snapshot that should not recalc.
Learn formulas fast?
Start with SUM, IF, and VLOOKUP, then use the glossary and Better Sheets tutorials for each new function.

Related Tutorials

Watch how Google Sheets formulas works

Browse more tutorials
Learn Google Sheet Formulas The Hard Way

Learn Google Sheet Formulas The Hard Way

One weird way to learn more about what Google Sheets can do. https://bet...
Two Things to Know When Starting to Learn Google Sheets

Two Things to Know When Starting to Learn Google Sheets

Two things I would teach every beginner to immediately improve your skil...
Google Sheet Basics - The Absolute Basics

Google Sheet Basics - The Absolute Basics

Let's start at the basics of Google Sheets. Where every beginner spreads...
Hardest Formula: SumIF | Addition Based on Dates / Values

Hardest Formula: SumIF | Addition Based on Dates / Values

Demystifying the SumIF Formula. Add up your values based on a condition,...
Your First Formula

Your First Formula

Learn how to use Formulas in Google Sheets. Use the Equal sign "=" to un...
Ultimate Checklist in Google Sheets

Ultimate Checklist in Google Sheets

how to create and customize checklists using Google Sheets. I show you h...

Related blog posts

Guides that explain Google Sheets formulas in more depth.

Browse the blog

Related glossary terms

Done reading about Google Sheets formulas?

Membership unlocks 636+ tutorials, unlimited generators, and every template. Practical lessons. Zero fluff.

Need this once

Jump to a free tool or a single tutorial for this topic.

Learning Sheets for real

Unlock the full library, generators, and templates with membership.