Google Sheets Formula List Cheat Sheet
The Most Common Google Sheets Formulas Chart
Google Sheets is more than just a simple spreadsheet tool, it's a powerful platform that can handle everything from basic data organization to complex financial analysis. Whether you're a beginner just starting out or a seasoned professional looking to sharpen your skills, mastering Google Sheets formulas can significantly enhance your productivity and data management capabilities.
Below are the essential Google Sheets formulas organized by category -- from basic arithmetic to advanced statistical calculations. Each includes the syntax and a plain-English explanation so you can start applying them immediately.
Good to know: Most formulas on this list also work in Excel with identical syntax. The exceptions are Google-specific functions like IMPORTRANGE, QUERY, and FILTER, which have no direct Excel equivalent.
Formulas by Category
➕ Basic Arithmetic
SUM=SUM(A1:A10)AVERAGE=AVERAGE(A1:A10)MIN=MIN(A1:A10)MAX=MAX(A1:A10)COUNT=COUNT(A1:A10)COUNTA=COUNTA(A1:A10)📄 Text Functions
CONCATENATE=CONCATENATE(A1, " ", B1)SPLIT=SPLIT(A1, ",")LEFT=LEFT(A1, 3)RIGHT=RIGHT(A1, 4)LEN=LEN(A1)SEARCH=SEARCH("word", A1)TRIM=TRIM(A1)LOWER=LOWER(A1)UPPER=UPPER(A1)❓ Logical Functions
=IF(A1 > 100, "Yes", "No")AND=AND(A1 > 100, B1 < 50)OR=OR(A1 > 100, B1 < 50)NOT=NOT(A1 > 100)🔍 Lookup Functions
=VLOOKUP(A1, B1:C10, 2, FALSE)HLOOKUP=HLOOKUP(A1, A1:J2, 2, FALSE)INDEX=INDEX(A1:C10, 2, 3)MATCH=MATCH("apple", A1:A10, 0)FILTER=FILTER(A1:A10, B1:B10 > 100)QUERY=QUERY(A1:C10, "SELECT A, B WHERE C > 100", 1)📅 Date and Time Functions
TODAY=TODAY()NOW=NOW()DATEDIF=DATEDIF(A1, B1, "D")EDATE=EDATE(A1, 1)EOMONTH=EOMONTH(A1, 1)WEEKDAY=WEEKDAY(A1, 1)📈 Array Formulas
ARRAYFORMULA=ARRAYFORMULA(A1:A10 * B1:B10)IMPORTRANGE=IMPORTRANGE("spreadsheet_url", "Sheet1!A1:B10")UNIQUE=UNIQUE(A1:A10)💶 Financial Functions
PMT=PMT(interest_rate, number_of_periods, present_value)NPV=NPV(discount_rate, value1, [value2, ...])📊 Statistical Functions
STDEV=STDEV(A1:A10)VAR=VAR(A1:A10)PERCENTILE=PERCENTILE(A1:A10, 0.9)MEDIAN=MEDIAN(A1:A10)This list covers a broad range of functionalities in Google Sheets and should serve as a handy reference for many common tasks. Most also work in Excel with identical syntax.