Row total
=SUM(B2:D2) adds three columns on a budget row and copies down the table.
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.
Use formulas for math, lookups, text cleanup, conditional labels, and live reports that should update whenever someone edits source data.
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.
Click a cell, type =, then pick a function or reference other cells like =B2*C2.
Copy formulas down columns or use dynamic arrays so one formula fills many rows.
Name important ranges so formulas read =SUM(Revenue) instead of cryptic letters.
Watch for error tokens like
Layer QUERY, FILTER, and ARRAYFORMULA when flat SUM rows are not enough for reporting.
Use the formula generator or function help panel when you know the outcome but not the syntax.
=SUM(B2:D2) adds three columns on a budget row and copies down the table.
=VLOOKUP(SKU, Prices!A:B, 2, FALSE) pulls unit price for an order line from a price list tab.
=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.
Watch how Google Sheets formulas works
Guides that explain Google Sheets formulas in more depth.
You may be using Google Sheet to do math and find that you need to iterate a number. ROW() gets you the row you're on, and helps you with this.
Read post →Users can also customize the appearance of their spreadsheets with different fonts, colors, and themes.
Read post →Five increasingly difficult ways of explaining spreadsheets in Google Sheets: The basics of Google Sheets text Menu items in Google Sheets Math inside Google Sheets Using Formulas in Google Sheets Apps Script in Google Sheets
Read post →Every formula starts with = followed by a function name and arguments in parentheses. Ranges use A1 notation, text sits in quotes, and operators like + and & combine values. Sheets recalculates when inputs change, so syntax errors show as #NAME? or #ERROR! in the cell.
Read guide →Visual formulas are spreadsheet layouts where the formula output is meant to be seen, not just calculated: sparkline strips, emoji status icons, color scales, and REPT bars that communicate trend and health at a glance. They sit between raw numbers and full chart objects for dense dashboards.
Read guide →QUERY runs a SQL-like statement against a range of cells and returns a new table of results. You pass a data range, a query string with SELECT, WHERE, ORDER BY, and optional headers. It is the fastest way to filter, sort, group, and pivot sheet data without helper columns.
Read guide →ARRAYFORMULA tells Google Sheets to treat a formula as an array operation so one expression fills many cells at once. It is common with IF, VLOOKUP, and math on full columns before dynamic arrays made many patterns automatic. It still matters for legacy sheets and explicit control.
Read guide →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.