Excel Basic Formulas
Excel Basic Formulas
1. Basic Arithmetic
=A1 + A2
=B1 * C1
=A1 - A2
2. Built-in Functions
=SUM(A1:A5)
AVERAGE:
=AVERAGE(B1:B10)
IF:
If the value in A1 is greater than 10, the result is "Pass"; otherwise, it's "Fail".
3. CONCATENATE / CONCAT
Joins multiple text strings into one (in newer Excel versions, use CONCAT).
Formula:
or
=CONCAT(A1, " ", B1)
or
4. Text Manipulation
Combine (concatenate) text:
VLOOKUP:
6. HLOOKUP
Example: Finds 50 in the first row and returns the value from the second row.
7. COUNT
=COUNT(A1:A10)
Example: Counts how many numeric values are in the range A1 through A10.
8. COUNTA
Counts all non-empty cells in a range (including text, numbers, and dates).
=COUNTA(A1:A10)
9. LEN
=LEN(A1)
10. MAX
=MAX(range)
11. MIN
=MIN(range)