PAPER 2 of notes Flashcards
sum of range
=SUM(range)
average of range
=AVERAGE(range)
smallest of the range
=MIN(range)
biggest of the range
=MAX(range)
counting amount of numeric values, not summing up
=COUNT(range)
rounding up or down a number
=MROUND(value to be rounded;multiplication)
automatically rounds up
=CEILING.MATH(value to be rounded up;multiple)
automatically rounds down
=FLOOR.MATH(value to be rounded down; multiple)
multiplies all the numbers given as arguments
=PRODUCT(range)
the integer portion of a division between two numbers
=QUOTIENT(num;division)
power of something
=POWER(number;power)
a random number in the range
=RANDBETWEEN(bottom;top)
count the text and number, non empty cells
=COUNTA(range)
allows you to make logical comparisons between a value and what you expect
=IF(expression; result if true; result if false)
checks whether one or more conditions are met, and returns a value that corresponds to the first TRUE condition.
=IFS(expression;resultiftrue;resultiffalse…)