010 (A) Ms-Excel Functions
010 (A) Ms-Excel Functions
Add values in a
=SUM(range of cells to add) =SUM(A1:A10)
SUM range of cells
Average the
=AVERAGE(range of cells to
values in a range =AVERAGE(A1:A10)
average)
AVERAGE of cells
Find the highest
value in a range =MAX(range of cells) =MAX(A1:A10)
MAX of cells
Find the lowest
value in a range of =MIN(range of cells) =MIN(A1:A10)
MIN cells
Display different
information =IF(condition test, what to display if
=IF(A1>20, “Great!”,”Oops!”) or
depending on the outcome is true, what to display if
=IF(A1>20, A1*E1,A1)
outcome of a outcome is false)
IF condition test
TRUE and FALSE
are the only
Test that more possible answers.
than one condition To change the
is true.
content of a cell
=AND(condition test 1, condition test as the result of an
Test result is =AND(A1>20,B1=”Gold”)
2, ...)
TRUE only if all AND function, use
conditions are the AND function
met. as the condition
test in an IF
AND statement
Test that more
than one condition
is true. =OR(condition test 1, condition test
=OR(A1>20,B1=”Gold”)
2, ...)
Test result is
OR TRUE if any of the
conditions are
met.