You are on page 1of 4

Text Functions

LEFT
RIGHT
MID
TRIM
LEN
Concatenate
SEARCH /FIND
FIND is case sensitive SEARCH is not

REPLACE
CHAR to get a character associated with a value
Char(65) = A
Char(90)=Z

Text ()- : converts a value into a text on specific format

Text Functions
TRIM : remove spaces between the
text
(leaving single space)
- Removes spaces at beginning and end
of the cell

Other Functions

Max()- to find the max value


Min()- to Find the min value
Large()- to find nth largest value
Small() to find nth smallest value
Row()- to find the row number
Column()- to find the column number
Address()- to find address of cell in
worksheet

Various options in Address ()


Address(2,3) - $C$2 {absolute}
Address(2,3,2) - C$2 {Absolute row;
relative column}
Address(2,3,3) - $C2 {Relative row;
absolute column}
Address(2,3,4) - C2 {Relative}

You might also like