✦ Excel Guide

Excel Formula Cheat Sheet 2026 — 50 Must-Know Formulas

The complete reference for essential Excel formulas — organised by category with syntax and real examples. Bookmark this page.

Generate Any Formula Free →
📅 April 2026 · 5 min read · ExcelForm

Lookup Formulas

FormulaWhat it doesExample
VLOOKUPSearch table right-side only=VLOOKUP(A2,Sheet2!A:B,2,FALSE)
XLOOKUPModern lookup — any direction=XLOOKUP(A2,B:B,C:C,"Not found")
INDEX MATCHFlexible lookup — left or right=INDEX(B:B,MATCH(A2,A:A,0))
HLOOKUPHorizontal lookup across rows=HLOOKUP(A1,A1:Z2,2,FALSE)
MATCHReturn position of value in range=MATCH(D2,A:A,0)
CHOOSEPick from a list by index number=CHOOSE(2,"Red","Blue","Green") → Blue

Math & Conditional Sum Formulas

FormulaWhat it doesExample
SUMAdd a range of numbers=SUM(B2:B100)
SUMIFSum if one condition is met=SUMIF(A:A,"East",C:C)
SUMIFSSum with multiple conditions=SUMIFS(C:C,A:A,"East",B:B,"Paid")
SUMPRODUCTSum of multiplied arrays; OR logic=SUMPRODUCT((A:A="East")*(C:C))
SUBTOTALSum/average visible rows only=SUBTOTAL(9,B2:B100)
ROUNDRound to N decimal places=ROUND(A2,2)
INTRound down to nearest whole number=INT(A2)
MODReturn remainder after division=MOD(A2,3)
ABSAbsolute value (removes negative sign)=ABS(A2)
LARGE / SMALLNth largest or smallest value=LARGE(A:A,3) → 3rd largest

Count Formulas

FormulaWhat it doesExample
COUNTCount cells with numbers=COUNT(A:A)
COUNTACount non-empty cells=COUNTA(A:A)
COUNTBLANKCount empty cells=COUNTBLANK(A:A)
COUNTIFCount cells meeting one condition=COUNTIF(B:B,"Complete")
COUNTIFSCount with multiple conditions=COUNTIFS(A:A,"East",B:B,">0")

Logic Formulas

FormulaWhat it doesExample
IFReturn different values based on condition=IF(A2>100,"High","Low")
IFSMultiple conditions without nesting=IFS(A2>=90,"A",A2>=80,"B",TRUE,"F")
ANDTrue if all conditions are true=AND(A2>0,B2="Active")
ORTrue if any condition is true=OR(A2="East",A2="West")
NOTReverses true/false=NOT(ISBLANK(A2))
IFERRORSuppress formula errors=IFERROR(A2/B2,0)
IFNAHandle #N/A errors only=IFNA(VLOOKUP(...),"Not found")
SWITCHMatch against multiple values=SWITCH(A2,1,"Jan",2,"Feb","Other")

Text Formulas

FormulaWhat it doesExample
CONCATENATE / &Join text strings=A2&" "&B2
TEXTJOINJoin with delimiter, skip blanks=TEXTJOIN(", ",TRUE,A2:A10)
LEFT / RIGHTExtract N characters from left/right=LEFT(A2,3)
MIDExtract N characters from position=MID(A2,4,3)
LENCount characters in a string=LEN(A2)
TRIMRemove extra spaces=TRIM(A2)
UPPER / LOWERConvert case=UPPER(A2)
FIND / SEARCHFind position of text (SEARCH=case insensitive)=FIND("@",A2)
SUBSTITUTEReplace specific text=SUBSTITUTE(A2,"old","new")
TEXTFormat number as text=TEXT(A2,"$#,##0.00")
VALUEConvert text to number=VALUE(A2)

Date Formulas

FormulaWhat it doesExample
TODAYCurrent date=TODAY()
NOWCurrent date and time=NOW()
DATECreate date from year/month/day=DATE(2024,12,31)
DATEDIFDifference between dates=DATEDIF(A2,TODAY(),"Y") → years
NETWORKDAYSBusiness days between dates=NETWORKDAYS(A2,B2)
EOMONTHLast day of month=EOMONTH(TODAY(),0)
EDATEAdd/subtract months=EDATE(A2,3) → 3 months later
YEAR / MONTH / DAYExtract date parts=YEAR(A2), =MONTH(A2)
WEEKDAYDay of week as number=WEEKDAY(A2,2) → 1=Mon...7=Sun

Dynamic Array Formulas (Excel 365 & Google Sheets)

FormulaWhat it doesExample
FILTERReturn rows matching conditions=FILTER(A:B,C:C="East")
UNIQUEList of unique values=UNIQUE(A2:A100)
SORT / SORTBYSort a range dynamically=SORT(A2:C100,2,-1)
SEQUENCEGenerate a series of numbers=SEQUENCE(10) → 1,2,3...10
XLOOKUPFlexible lookup in any direction=XLOOKUP(A2,B:B,C:C,"N/A")
Tip: Don't memorise these formulas — use ExcelForm's AI generator to build any formula from a plain English description instantly. Free, no signup required.

Generate the Formula Instantly

Free AI formula generator — no signup, no credit card. 10 queries per day.
All 9 tools included free.

Try ExcelForm Free
FAQ

Frequently Asked Questions

What are the most important Excel formulas to know?
The highest-impact Excel formulas to learn are: VLOOKUP or XLOOKUP (data retrieval), SUMIFS (conditional aggregation), IF/IFS (logic), INDEX MATCH (flexible lookups), COUNTIFS (counting with conditions), IFERROR (error handling), and DATEDIF (date calculations). These cover 90% of everyday spreadsheet tasks.
What is the easiest way to learn Excel formulas?
Practice with real data problems rather than memorising syntax. Pick one formula at a time, understand what it does, and try it on your own data. ExcelForm can help — describe what you want to calculate and it generates the formula, which you can then study and learn from.
Is there a free downloadable Excel formula cheat sheet?
The formulas on this page cover the most essential 50 functions. ExcelForm at excelform.xyz also has a Formula Library of 30 ready-to-use formulas with one-click loading into the generator. You can screenshot or print this page as a reference.
What Excel formulas should beginners learn first?
Start with: SUM (add numbers), AVERAGE, IF (basic logic), VLOOKUP (pull data from a table), SUMIF (conditional sum), COUNTA (count non-empty cells), and TEXT (format numbers for display). Once these feel comfortable, move to SUMIFS, INDEX MATCH, and IFERROR.