GRADE 12.excel Functions
GRADE 12.excel Functions
Functions in Excel
Value_if_false
The value you want to The table where you The column number in False for exact value
search for search for the answer. the table where the True for closest match
answer is.
Text functions:
Name of function What the function does Example
LEN Determines the number of =LEN(A3)
characters in a string
CONCATENATE Combines multiple strings into =CONCATENATE(string1,string2,…)
a single string
UPPER Converts all the letters in a =UPPER(B4)
string to upper case
LOWER Converts all the letters in a =LOWER(C1)
string to lower case
LEFT(string,N) Extracts the left N characters of =LEFT(D9,4)
a string
RIGHT(string,N) Extracts the right N characters =RIGHT(A8,5)
of a string
MID(string,M,N) Extracts N characters from the =MID(B6,5,3)
Mth position in a string “start at the 5rd character and
count 3”
Strydom
FIND(substring,string) Returns the position of a =FIND(“ “,A4)
substring within a string To find the space in the cell
VALUE Converts a string that =VALUE(E5)
represents a numerical value to 072 will be converted to 72
a number.
String can be a number, date or
time value that has been
formatted as text.