0% found this document useful (0 votes)
206 views

Text Function

The document defines and provides examples of various text functions in Excel: 1) Left(), Right(), and Mid() display parts of a text string based on the number of characters from the left, right, or middle. 2) Upper() and Lower() convert text to uppercase or lowercase. 3) Proper() converts the first letter of each word to uppercase. 4) Len() counts the number of characters in a text string. 5) Trim() removes unnecessary spaces from a text string. 6) Rept() repeats a text string the specified number of times.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
206 views

Text Function

The document defines and provides examples of various text functions in Excel: 1) Left(), Right(), and Mid() display parts of a text string based on the number of characters from the left, right, or middle. 2) Upper() and Lower() convert text to uppercase or lowercase. 3) Proper() converts the first letter of each word to uppercase. 4) Len() counts the number of characters in a text string. 5) Trim() removes unnecessary spaces from a text string. 6) Rept() repeats a text string the specified number of times.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Index TEXT FUNCTION

Function
Defination Syntax Example Answer
Name
It display left side character as per
Left() =Left("text",number of character) =Left("Gangajal Ghati",5) Ganga
number supply
It display right side character as per
Right() =Right("text",number of character) =Right("Gangajal Ghati",5) Ghati
number supply
It display character from starting =Mid("text",starting number,number
Mid() =Mid("Gangajal Ghati",6,3) jal
number to number of character of character)
It convert all lower case into upper
Upper() =Upper("text in small letter") =Upper("gangajal ghati") GANGAJAL GHATI
case
It convert all upper case into lower
Lower() =Lower("text in capital letter") =Lower("GANGAJAL GHATI") gangajal ghati
case
It convert all lower case of each
Proper() =Proper("text") =proper("happy new year 2021") Happy New Year 2021
word into upper case
It count number of character form a
Len() =Len("text") =Len("Gangajal ghati") 14
text string
It removes all unnessary space and =Trim("text with more than one
Trim() =Trim("My name is …..") My name is …..
accept one space between words space")

Rept() It repeat Text as per number supply =Rept("text",number of time) =Rept("Bankura ",4) Bankura Bankura Bankura Bankura

You might also like