You don't need to learn hundreds of Excel formulas. Master these 10 and you'll handle 80% of all daily spreadsheet work. These are the formulas employers test for, teachers use, and professionals rely on every day.

1. SUM โ€” Add Numbers

=SUM(A1:A10)

The most fundamental formula. Adds all numbers in a range. Press Alt + = to auto-insert SUM below a column of numbers.

2. AVERAGE โ€” Calculate Mean

=AVERAGE(B2:B20)

Returns the arithmetic mean. AVERAGE ignores empty cells but counts cells containing zero.

3. IF โ€” Make Decisions

=IF(A2>=60, "Pass", "Fail")

Tests a condition. Returns first value if true, second if false. Nest multiple IFs for more conditions, or use IFS in newer Excel.

4. VLOOKUP โ€” Find Values

=VLOOKUP(A2, B:D, 2, FALSE)

Searches the first column of a table and returns a value from another column. The most important lookup formula.

5. COUNTIF โ€” Count Matches

=COUNTIF(A2:A100, "Active")

Counts cells meeting a condition. Use COUNTIFS for multiple conditions.

6. SUMIF โ€” Conditional Sums

=SUMIF(B:B, "Sales", C:C)

Adds values in column C only where column B equals "Sales". Essential for reports and budget tracking.

7. CONCATENATE / & โ€” Join Text

=A2 & " " & B2

Combines text from multiple cells. The & operator is shorter than CONCATENATE(). Add separators like ", " between values.

8. LEFT/RIGHT/MID โ€” Extract Text

=LEFT(A2, 5) -- First 5 characters =RIGHT(A2, 3) -- Last 3 characters =MID(A2, 3, 4) -- 4 chars starting at position 3

9. TODAY โ€” Current Date

=TODAY() -- Today's date (updates daily) =TODAY()-A2 -- Days since the date in A2 =A2-TODAY() -- Days until the date in A2

10. IFERROR โ€” Handle Errors Gracefully

=IFERROR(formula_that_might_fail, "fallback value")

Wraps any formula. If it errors, returns your fallback instead of ugly #N/A or #VALUE! errors.

๐Ÿ’ก Learning Order

Learn them in this order: SUM โ†’ AVERAGE โ†’ IF โ†’ COUNTIF โ†’ SUMIF โ†’ VLOOKUP โ†’ CONCATENATE โ†’ LEFT/MID/RIGHT โ†’ TODAY โ†’ IFERROR. Each builds on the previous.

Try FormulaZa โ€” Free AI Excel Tool

Type what you want in plain English โ†’ get the exact formula. Free, no signup required.

Generate Formula Free โ†’