Excel Formula
Excel Formula
Formula Description
Mathmetical
SUM Returns the sum of a supplied list of numbers
PRODUCT Returns the product of a supplied list of numbers
POWER Returns the result of a given number raised to a supplied power
SQRT Returns the positive square root of a given number
MOD Returns the remainder from a division between two supplied numbers
ROUND Rounds a number up or down, to a given number of digits
TEXT
CLEAN Removes all non-printable characters from a supplied text string
TRIM Removes duplicate spaces, and spaces at the start and end of a text string
LOWER Converts all characters in a supplied text string to lower case
Converts all characters in a supplied text string to proper case (ie. the first character in each word is
PROPER upper case and all other characters are lower case)
UPPER Converts all characters in a supplied text string to upper case
LEN Returns the length of a supplied text string
MID Returns a specified number of characters from the middle of a supplied text string
RIGHT Returns a specified number of characters from the end of a supplied text string
LEFT Returns a specified number of characters from the start of a supplied text string
Logical
IF Tests a user-defined condition and returns one result if the condition is TRUE, and
another result if the condition is FALSE
AND Tests a number of user-defined conditions and returns TRUE if ALL of the conditions
evaluate to TRUE, or FALSE otherwise
OR Tests a number of user-defined conditions and returns TRUE if ANY of the conditions
evaluate to TRUE, or FALSE otherwise
NOT Returns a logical value that is the opposite of a user supplied logical value or
expression
(ie. returns FALSE is the supplied argument is TRUE and returns TRUE if the supplied
argument is FALSE)
Statistical
MAX Returns the largest value from a list of supplied numbers
MIN Returns the smallest value from a list of supplied numbers
COUNT Returns the number of numerical values in a supplied set of cells or values
AVERAGE Returns the Average of a list of supplied numbers