Basic Excel Formulas
1. SUM
Adds a range of numbers.
=SUM(A1:A5) - Adds values from cells A1 to A5.
2. AVERAGE
Calculates the average of a range of numbers.
=AVERAGE(B1:B5) - Averages values from B1 to B5.
3. COUNT
Counts the number of numeric entries in a range.
=COUNT(C1:C10) - Counts numbers in C1 to C10.
4. IF
Performs a logical test and returns different values based on TRUE or FALSE.
=IF(D1>10, "Yes", "No") - If D1 is greater than 10, returns "Yes", otherwise "No".
5. CONCATENATE (or CONCAT)
Joins text from multiple cells.
=CONCATENATE(A1, " ", B1) - Joins A1 and B1 with a space in between.
6. NOW
Returns the current date and time.
=NOW()
7. MAX
Returns the largest number in a range.
=MAX(A1:A10)
8. MIN
Returns the smallest number in a range.
=MIN(A1:A10)