An Excel formulas cheat sheet provides a concise reference to the most useful Excel formulas covering the calculations and operations users need most frequently. Excel offers over 500 functions across various categories โ math and trig, statistical, text, logical, lookup and reference, date and time, financial, and various others. While most users only need a small subset of these for daily work, knowing which formulas exist and what they do supports efficient task completion. A well-organized cheat sheet provides quick reference when memory fails or when learning new analytical techniques requires identifying appropriate functions.
This guide walks through Excel formulas cheat sheet content including the most essential functions every Excel user should know, common formula patterns and combinations, syntax conventions, error troubleshooting, and where to find additional reference resources. Information here applies to current Excel versions including Excel 365, Excel 2019, Excel 2021, and Excel for the Web. Most functions work across all these versions with minor differences for newer functions only available in Excel 365 (UNIQUE, FILTER, SORT, LAMBDA, dynamic arrays). Whether you're new to Excel formulas or building reference for ongoing analytical work, this overview covers the essentials worth knowing.
The Excel formula bar is where formulas go โ preceded by an equals sign indicating Excel should calculate rather than display the text. Functions like SUM, AVERAGE, IF have specific syntax involving function name, parentheses, and arguments separated by commas. Cell references (A1, B2, etc.) point to specific cells. Operators (+, -, *, /, ^, &, etc.) perform mathematical and text operations. Combining functions, references, and operators produces formulas ranging from simple arithmetic to complex multi-step calculations. The cheat sheet provides reference to the building blocks โ knowing how to combine them creatively comes with practice.
Most-used formulas: SUM, AVERAGE, COUNT, IF, VLOOKUP/XLOOKUP, INDEX/MATCH, SUMIFS, COUNTIFS, AVERAGEIFS, CONCATENATE/TEXTJOIN, LEFT/RIGHT/MID, TODAY/NOW. Categories: Math/trig, statistical, text, logical, lookup, date/time, financial. Total Excel functions: 500+ across all categories. Modern functions (365/2021): UNIQUE, FILTER, SORT, XLOOKUP, LAMBDA, dynamic arrays. Help: F1 in formula bar shows function help. Practice approach: Master 20-30 most-used functions thoroughly rather than memorizing all 500+.
The most foundational Excel formulas every user should know start with basic aggregation functions. SUM(range) adds all values in a range โ =SUM(A1:A10) totals values in cells A1 through A10. AVERAGE(range) computes mean of values. COUNT(range) counts numeric cells; COUNTA(range) counts all non-empty cells; COUNTBLANK(range) counts empty cells. MIN(range) returns smallest value; MAX(range) returns largest. These foundational aggregation functions appear constantly in Excel work โ mastering them is essential before progressing to more complex formulas. Each takes one or more ranges as arguments and returns a single result based on the operation specified.
Conditional aggregation functions extend aggregation with criteria. SUMIF(range, criteria, sum_range) sums values meeting criteria โ =SUMIF(B2:B10, "East", C2:C10) sums column C values where column B equals "East". COUNTIF, AVERAGEIF follow similar patterns for counting and averaging conditionally. Multi-criteria versions (SUMIFS, COUNTIFS, AVERAGEIFS) accept multiple criteria โ =SUMIFS(C2:C10, B2:B10, "East", D2:D10, ">100") sums where multiple conditions met. These conditional functions are extraordinarily useful for analytical work โ building selective aggregations from raw data without manual filtering.
SUM, AVERAGE, COUNT, MIN, MAX, ROUND, ABS, MOD, POWER, SQRT for basic calculations.
SUMIF, COUNTIF, AVERAGEIF (single criterion); SUMIFS, COUNTIFS, AVERAGEIFS (multi-criteria).
IF, AND, OR, NOT, IFERROR, IFNA, IFS (multi-branch), SWITCH for conditional logic.
VLOOKUP, HLOOKUP, INDEX, MATCH, XLOOKUP (modern), CHOOSE, INDIRECT, OFFSET.
LEFT, RIGHT, MID, FIND, SEARCH, LEN, UPPER, LOWER, PROPER, TRIM, CLEAN, CONCATENATE/TEXTJOIN.
TODAY, NOW, DATE, YEAR, MONTH, DAY, WEEKDAY, NETWORKDAYS, EDATE, EOMONTH, DATEDIF.
Logical functions enable formula branching based on conditions. IF(test, value_if_true, value_if_false) is foundational โ =IF(A1>100, "High", "Low") returns "High" if A1 exceeds 100, otherwise "Low". Nested IFs handle multiple conditions but become hard to read with many branches. IFS function (Excel 2019+) handles multiple conditions cleaner: =IFS(A1>100, "High", A1>50, "Medium", TRUE, "Low"). AND(condition1, condition2, ...) returns TRUE only if all conditions true. OR(condition1, condition2, ...) returns TRUE if any condition true. IFERROR(formula, value_if_error) handles error scenarios returning specified value when formula errors out โ useful for cleaner-looking spreadsheets without #N/A and similar error displays cluttering the worksheet view.
Lookup functions are among the most powerful and most commonly used formulas in Excel. VLOOKUP(lookup_value, table, column_index, exact_match) finds a value in the leftmost column of a table and returns a value from a specified column โ =VLOOKUP(A1, $D$2:$F$100, 3, FALSE) finds A1 in column D and returns the corresponding value from column F. XLOOKUP (Excel 365/2021) is the modern replacement: =XLOOKUP(A1, $D$2:$D$100, $F$2:$F$100) is more flexible and handles common VLOOKUP limitations. INDEX/MATCH combination provides similar functionality with maximum flexibility: =INDEX(F:F, MATCH(A1, D:D, 0)) returns from column F based on match in column D.
Text functions support string manipulation in formulas. LEFT(text, num_chars), RIGHT(text, num_chars), MID(text, start, num_chars) extract specific portions. FIND(find_text, within_text) and SEARCH(find_text, within_text) locate text positions โ FIND is case-sensitive, SEARCH isn't. LEN(text) returns string length. UPPER, LOWER, PROPER change case. TRIM removes extra spaces; CLEAN removes non-printing characters. CONCATENATE joins text from multiple cells (or simply use & operator). TEXTJOIN (Excel 2019+) joins with delimiter and ignore-empty option. Each function supports specific text manipulation needs that arise constantly when working with names, IDs, addresses, and various other text data.
Aggregation: SUM, AVERAGE, COUNT, COUNTA, MIN, MAX. Conditional: IF, IFS, IFERROR, SUMIFS, COUNTIFS, AVERAGEIFS. Lookup: VLOOKUP, XLOOKUP, INDEX, MATCH. Text: LEFT, RIGHT, MID, CONCATENATE, TRIM. Master these: Memorizing these 20 formulas covers approximately 80% of typical Excel work. Worth investing time to learn them thoroughly versus surface knowledge of many more functions you rarely use in actual practice.
Dynamic arrays: UNIQUE (returns unique values), FILTER (returns subset based on criteria), SORT (sorts dynamically). XLOOKUP: Modern replacement for VLOOKUP, more flexible. LAMBDA: Custom user-defined functions. SEQUENCE: Generates number sequences. TEXTSPLIT: Splits text by delimiters. Each: Available only in Excel 365 and Excel 2021+ โ older versions don't have these. Use them for new workbooks where modern Excel is required.
Current: TODAY() returns current date; NOW() returns current date and time. Construction: DATE(year, month, day) constructs date values. Extraction: YEAR, MONTH, DAY, WEEKDAY, HOUR, MINUTE, SECOND. Calculations: DATEDIF (date differences in various units), NETWORKDAYS (business days), EDATE (date offset by months), EOMONTH (last day of month). Each: Supports date-related calculations beyond simple arithmetic on date values.
Cell reference types matter substantially in formulas. Relative references (A1) shift when copied to new cells โ copying =A1+B1 from C1 to C2 produces =A2+B2 because both references shifted with the formula. Absolute references ($A$1) stay constant when copied โ copying =$A$1+B1 from C1 to C2 produces =$A$1+B2 because A1 stayed absolute while B1 shifted. Mixed references (A$1 or $A1) lock either row or column but not both โ useful for two-dimensional fill patterns. Master these reference types to avoid the common error of formula copies producing unexpected results due to reference behavior.
Common Excel formula errors and their meanings include several recurring patterns. #DIV/0! occurs when dividing by zero or empty cell โ wrap in IFERROR to handle gracefully. #N/A means lookup formula couldn't find match โ typical with VLOOKUP/XLOOKUP when value not in lookup range. #VALUE! occurs with type mismatches (text where number expected, etc.). #REF! means cell reference is invalid โ typically after deleting cells the formula referenced. #NAME? means formula contains unrecognized text โ typically a misspelled function name. Each error provides clue about what went wrong; addressing the underlying cause produces working formulas.
For users wanting to use formulas across multiple worksheets, the syntax requires sheet references. =SheetName!CellReference references a cell on different sheet โ =Sheet2!A1 returns value from cell A1 on Sheet2. Sheet names with spaces require single quotes โ ='Sheet With Spaces'!A1. Workbook references span across files โ =[Workbook.xlsx]Sheet1!A1 references cell in another workbook. 3-D references span multiple sheets โ =SUM(Sheet1:Sheet3!A1) sums A1 across Sheet1 through Sheet3. These cross-sheet references support complex workbooks where different sheets serve different purposes but share data through formula references.
For users wanting to combine formulas creatively, several patterns work powerfully. Nested formulas combine multiple functions: =SUMIFS(C:C, B:B, IF(A1="All", "*", A1)) uses IF inside SUMIFS for conditional criteria. Array formulas (Ctrl+Shift+Enter in older Excel; just Enter in Excel 365 dynamic arrays) operate on ranges performing calculations across multiple cells. INDEX/MATCH/MATCH for two-dimensional lookups: =INDEX(B2:F100, MATCH(A1, A2:A100, 0), MATCH(C1, B1:F1, 0)) finds intersection of row and column matches. Each combination expands what formulas can accomplish beyond what individual functions alone can do.
For users learning Excel formulas effectively, several strategies work better than memorizing. Use Excel's formula assistance โ type =SU and Excel suggests SUM, SUMIFS, etc. with parameter hints. Click function name and press F1 to access detailed help with examples. Use the Formula Builder (Insert Function) for guided formula creation showing parameters with descriptions. Practice with realistic data scenarios rather than abstract examples. Study formulas you encounter in others' work to learn techniques. Each approach supports practical learning more efficiently than rote memorization of formula syntax that you may not retain without applying to actual problems.
For users wanting Excel formula resources beyond cheat sheets, several options support deeper learning. Microsoft's official Excel function reference (support.microsoft.com) provides detailed documentation for every function. ExcelJet (exceljet.net) offers comprehensive formula references with examples. ExcelCampus and various YouTube channels provide video tutorials covering specific formulas in depth. Books like 'Excel Formulas and Functions for Dummies' provide structured learning. ExcelIsFun YouTube channel's formula content is extensive. Mike Girvin's work covers advanced formulas thoroughly. Each resource supports formula learning beyond basic cheat sheet level.
Advanced Excel formulas extend beyond basic functions to specialized capabilities. Statistical functions including STDEV, MEDIAN, MODE, PERCENTILE, RANK support data analysis. Financial functions including PMT (loan payment), FV (future value), PV (present value), NPV (net present value), IRR (internal rate of return) support financial modeling. Engineering functions including conversion calculations and various technical operations. Information functions like ISBLANK, ISNUMBER, ISTEXT for type checking. Database functions like DSUM, DAVERAGE for criteria-based aggregation. Each category serves specific analytical needs that domain practitioners use regularly though general users may rarely encounter them.
For users dealing with spreadsheet performance issues from many formulas, several optimization strategies help. Avoid volatile functions (TODAY, NOW, RAND, INDIRECT, OFFSET) when possible โ they recalculate frequently. Use array formulas judiciously โ they can substantially impact performance. Convert formulas to values when historical results don't need updating. Use efficient lookup approaches (XLOOKUP often faster than VLOOKUP/INDEX-MATCH for large ranges). Switch calculation to manual mode (Formulas โ Calculation Options) during heavy formula editing. Each optimization helps with large workbooks though most users don't encounter performance issues with typical-sized worksheets.
For users wanting to use formulas in conjunction with other Excel features, several integration patterns work. Conditional formatting based on formula results โ formula returns TRUE/FALSE, format applies based on result. Data validation using formula criteria โ restrict cell entries to formula-defined criteria. PivotTables aggregate data without requiring formulas in source โ though formulas can supplement pivot tables for complex calculations. Charts visualize formula results. Power Query transforms before formulas process. Each integration extends formulas beyond standalone calculation into broader workbook functionality combining multiple Excel capabilities for richer applications.
For users wanting their personal Excel formula cheat sheet, several construction approaches work. Keep it simple โ list the 20 most-used formulas with brief syntax examples rather than comprehensive 500-function reference. Add common patterns and combinations you've found useful. Update periodically as you learn new formulas worth including. Format for quick reference โ clear headings, consistent layout, easy scanning. Distribute to colleagues if working in teams using similar Excel work. Personal cheat sheets evolve over time matching your specific work patterns and frequently-used functions, providing more value than generic comprehensive cheat sheets that include irrelevant content.
For users transitioning between Excel and other tools (Google Sheets, LibreOffice Calc), formula concepts mostly transfer with minor syntax variations. Most basic functions (SUM, AVERAGE, IF, VLOOKUP, etc.) work identically across spreadsheet applications. Some Excel-specific functions don't exist in alternatives. Some Google Sheets functions (GOOGLEFINANCE, ARRAYFORMULA) don't exist in Excel. The conceptual approach to formulas (aggregation, conditional logic, lookups, text manipulation, dates) transfers fully though specific implementation may need adjustment. Excel skills generally translate well to spreadsheet work in any application with reasonable adjustment time.
For users wanting to build expertise in Excel formulas systematically, structured learning helps. Take a comprehensive Excel course covering formulas systematically (Coursera, LinkedIn Learning, Udemy options exist). Build a small personal project applying various formulas to real data โ household budget, fitness tracking, work analysis. Read other people's formulas in workbooks you encounter โ understand their techniques and adapt them to your work. Solve specific problems progressively โ each successful formula application builds skills supporting more complex future work. Each approach contributes to growing formula competence over weeks and months of consistent learning.
The bottom line on Excel formulas cheat sheets: they provide useful quick reference for the wide range of Excel functions, but mastery comes from practice rather than memorization. Master 20 essential formulas (aggregation, conditional, lookup, text basics) thoroughly first. Build broader formula vocabulary as specific needs arise rather than learning hundreds of functions you may never use.
Use Excel's formula assistance and help features to support working with unfamiliar functions when needed. Combine formulas creatively for sophisticated calculations. Wrap critical formulas in error handling for robust workbooks. With these practices, Excel formulas become powerful tools supporting analytical work rather than confusing technical barrier preventing efficient spreadsheet use.
Adds all values in range. Most fundamental aggregation function in Excel.
Computes mean of values in range. Excludes empty cells and text.
Conditional logic. Returns true value if test is TRUE, false value otherwise.
Look up value and return corresponding value. XLOOKUP is modern replacement (365/2021).
Sum values meeting multiple criteria. Most used conditional aggregation.
Count cells meeting multiple criteria. Same pattern as SUMIFS.
Join text from multiple cells. & is shortcut for CONCATENATE.
Current date / date and time. Update automatically when workbook recalculates.
Extract portions of text by position from left, right, or middle of string.
Removes extra spaces from text. Essential for cleaning imported data.
Flexible lookup combination. More powerful than VLOOKUP for complex scenarios.
Returns specified value if formula errors. Prevents error propagation.
For users wanting to memorize formulas effectively, several memory strategies help. Use formulas regularly โ formulas you use daily become memorized through repetition without explicit memorization effort. Group related formulas โ learning SUM, COUNT, AVERAGE together reinforces aggregation pattern. Understand what formulas do conceptually rather than just memorizing syntax โ knowing INDEX returns value at position helps remember the function purpose even if syntax slips. Practice variations โ using SUMIFS in many different scenarios builds deeper memory than memorizing single example. Build muscle memory through actual typing rather than just reading examples.
For users dealing with the specific challenge of long complex formulas, several readability strategies help. Use line breaks within formulas (Alt+Enter in formula bar) to make multi-line formulas readable. Add comments using N function: =SUM(A1:A10)+N("Total of column A") โ the N function evaluates to 0 but allows text comments within formulas. Use named ranges for clarity: =SUM(SalesData) clearer than =SUM(A2:A1000). Break complex formulas into multiple simpler steps in helper cells. Each readability strategy makes complex formulas maintainable by you or colleagues months later when memory of the original logic has faded with time.
For users transitioning to formulas from manual calculation methods, several learning patterns help. Replace manual sum calculations with SUM. Replace manual averaging with AVERAGE. Replace manual lookup-and-return-data tasks with VLOOKUP/XLOOKUP. Each replacement of manual work with formula automation builds skills while solving immediate problems. The transition is gradual but produces substantial efficiency gains as formula skills accumulate. Most Excel users start with simple formulas and progress to more complex ones over years of work as needs and skills develop together with experience.
Looking forward, Excel formulas continue evolving with Microsoft's product development. AI-assisted formula creation through Microsoft 365 Copilot becoming available in some Excel versions. Dynamic array functions continue expanding capabilities. LAMBDA function enables custom function creation. Various new functions added periodically based on user requests. Stay current with Excel updates if you do substantial Excel work โ new capabilities can substantially improve workflows when adopted. Microsoft's blog and official Excel updates document new formula additions worth incorporating into your formula toolkit over time.