Excel Formulas
Excel Formulas
Excel Formulas
Excel Formulas
Basic math
Function Formula Example
To add up the total =SUM(cell range) =SUM(B2:B9)
To add individual items =Value1 + Value 2 =B2+C2
Subtract =Value1 - Value 2 =B2-C2
Multiply =Value1 * Value2 =B2*C2
Divide =Value1 / Value2 =B2/C2
Exponents =Value1 ^ Value2 =B2^C2
Average =AVERAGE(cell range) =AVERAGE(B2:B9)
Median =MEDIAN(cell range) =MEDIAN(B2:B9)
Max =MAX(cell range) =MAX(B2:B9)
Min =MIN(cell range) =MIN(B2:B9)
Conditional statements
Function Formula Example
If statement =IF(logical test, “result if =IF(B2>69,”Pass”,”Fail”)
the test answer is true”,
“result if the test answer is
false”)
Exact =EXACT(Value1, value2) =EXACT(B2, C2)