Google Sheets formulas are instructions that tell the spreadsheet to perform calculations, compare data, or manipulate text automatically. Instead of manually calculating values or counting entries by hand, formulas do the work for you in seconds. A formula always starts with an equals sign (=) followed by a function name and the data you want it to work with.
Free Guide to Rug Cleaning Methods for Home →
Think of formulas like recipes for your data. Just as a recipe tells you what ingredients to combine and in what order, a formula tells Google Sheets what numbers or text to work with and what operation to perform. The spreadsheet then displays the result in the cell where you typed the formula. When you change the data the formula references, the result updates automatically. This means you can build a spreadsheet once and use it repeatedly without redoing calculations.
Many everyday tasks benefit from formulas. Business owners use them to total sales figures across months. Teachers use them to calculate average test scores for entire classes. Families use them to budget household expenses. Nonprofits use them to track volunteer hours. Researchers use them to analyze survey responses. Anyone working with numbers or lists of data can save significant time by learning basic formulas.
Google Sheets offers hundreds of built-in functions. A function is the specific operation the formula performs—like adding numbers together, finding the largest value in a list, or counting how many cells contain a specific word. You don't need to memorize all of them. Learning a handful of the most commonly used functions covers the majority of spreadsheet tasks most people encounter.
Practical takeaway: Start by identifying one recurring task where you manually calculate or count information. This becomes your first formula project. Whether it's totaling weekly expenses, averaging student grades, or counting inventory items, having a real problem to solve makes learning formulas much more concrete than working through abstract examples.
Every formula in Google Sheets follows a consistent structure that becomes second nature once you understand the pieces. The formula always begins with an equals sign (=). This tells Google Sheets that what follows is a calculation or function, not just text you're typing. Without the equals sign, Google Sheets treats your entry as regular text.
Find Your Delta SkyMiles Number Information Guide →
After the equals sign comes the function name. Common examples include SUM (adds numbers), AVERAGE (calculates the mean), COUNT (counts cells with numbers), and IF (makes decisions based on conditions). Function names are not case-sensitive—you can type SUM, sum, or Sum and Google Sheets understands them the same way.
Following the function name come parentheses that contain the arguments. Arguments are the specific pieces of data the function works with. Most often, arguments reference a range of cells. A range is written with the starting cell, a colon, and the ending cell. For example, A1:A10 means "all cells from A1 through A10." You can also separate individual cells with commas if they're not next to each other, like A1, A3, A5.
Here's a concrete example: =SUM(B2:B10) tells Google Sheets to add all the numbers in cells B2, B3, B4, B5, B6, B7, B8, B9, and B10, then display the total. The formula occupies only one cell—typically a cell below or beside the data being summed—but it performs an operation on all ten cells of data.
Understanding cell references matters because they allow your formulas to be flexible. If you reference cells rather than typing numbers directly into the formula, you can change the data and the formula automatically recalculates. A formula using references like =SUM(B2:B10) stays correct even if the numbers in those cells change tomorrow. A formula with typed numbers like =2+5+10 only ever produces the same result.
Practical takeaway: Practice building simple formulas by typing them into empty cells. Try =SUM(A1:A5) with any numbers in those cells, then change one of the numbers and watch the total update. This reinforces how formulas reference cells and respond to changes in your data.
The SUM function adds numbers together and is probably the most frequently used formula across all spreadsheets. Type =SUM(A1:A10) and Google Sheets adds every number in that range. This works for any range—across rows, down columns, or even scattered cells. If you're tracking monthly sales totals, weekly hours worked, or quarterly expenses, SUM is usually your answer.
Get Your Free Guide to California EDD Contact Information →
The AVERAGE function calculates the mean of a group of numbers. A teacher might use =AVERAGE(B2:B20) to find the mean score on a test across twenty students. A business owner might use =AVERAGE(C2:C13) to determine average monthly revenue across a year. AVERAGE automatically ignores empty cells, so it counts only cells that contain numbers.
The COUNT function counts how many cells contain numbers (not text or blank cells). Use COUNT when you need to know how many items exist in a list. For instance, =COUNT(A1:A50) tells you how many of the fifty rows actually have numerical data entered. This is different from COUNTA, which counts any non-empty cell regardless of whether it contains numbers or text.
The IF function makes decisions and is the foundation for more complex spreadsheets. The syntax is =IF(condition, value if true, value if false). For example, =IF(A1>90, "Pass", "Fail") checks whether the value in A1 is greater than 90. If it is, the cell displays "Pass." If it's not, the cell displays "Fail." IF functions let you create spreadsheets that behave differently based on your data.
The COUNTIF function counts cells that meet a specific criterion. For example, =COUNTIF(A1:A50, "Yes") counts how many cells in that range contain the word "Yes." This is useful for surveys or checklists where you want to count responses. Similarly, SUMIF adds numbers only from cells that meet a condition, like =SUMIF(A1:A50, "Completed", B1:B50) which adds values in column B only where column A says "Completed."
Practical takeaway: Open a blank Google Sheet and create a simple dataset—perhaps a list of five to ten items with numerical values. Practice using SUM to total them, AVERAGE to find the mean, and COUNT to verify how many items you entered. This hands-on practice with real data builds confidence before tackling more complex functions.
Cell references are the addresses of cells in your spreadsheet, written as a column letter followed by a row number. Cell A1 is in column A, row 1. Cell B5 is in column B, row 5. Columns go from A to Z, then AA to AZ, BA to BZ, and so on across many columns. Rows are numbered starting at 1 and go down indefinitely. This addressing system means every cell in a spreadsheet has a unique address.
Learn About Customer Satisfaction Measurement Methods →
A range combines multiple cell addresses into a single reference. The most common format is the colon range: A1:A10 means "from cell A1 to cell A10, including all cells in between." You can also create ranges across rows, like A1:E1, which means "from cell A1 to E1 across the first row." Formulas work with ranges because they apply the same operation to many cells at once.
Relative references change when you copy a formula to a new location. If you write =SUM(A1:A5) in cell A7 and then copy that formula down to cell A8, Google Sheets automatically adjusts it to =SUM(A2:A6). The formula "moves" its references down one row to stay relative to its position. This is usually what you want—it lets you create one formula and copy it down or across to handle multiple similar calculations.
Absolute references use dollar signs ($) and never change when you copy a formula. For example, =A1*$B$5 will multiply the value in A1 by the value in B5. If you copy this formula to another row, the A1 reference becomes A2, A3, or whatever row you're in—but the $B$5 stays fixed on B5. Use absolute references when you want a formula to always reference a specific cell, like a tax rate or discount percentage that applies to multiple rows.
This guide is for general information only and is not medical, financial, legal, or other professional advice. For decisions specific to your situation, consult a qualified professional. See our Editorial Policy.