Excel Notes (Text Function)
Excel Notes (Text Function)
TEXT FUNCTION
● UPPER CASE
● LOWER CASE
● PROPER CASE
FOR EXAMPLE:
A11
varun FORMAT [ =UPPER(A11) ] :- VARUN
LEFT FUNCTION
=LEFT(text,[num_chars])
FOR EXAMPLE
A11
varun gupta =LEFT(A11,5) :- varun
RIGHT FUNCTION
=RIGHT(text,[num_chars])
A11
varun gupta =RIGHT(A11,5) :- gupta
MID FUNCTION:- It pulls a given number of characters from the starting point.
=MID(text,start_num,num_chars)
A11
varun gupta =MID(A11,1,7) {no, of characters to pull}
varun g (it also contains ‘blank space’)
OR
=MID(A11,6,5) :-( gupt) { it will also count the blank space}
A11 B11
varun gupta
=CONCATENATE(A11,B11)
varungupta
OR
=A11&B11
varungupta
If you want to put blank space between the words
=A11&” “&B11 :- varun gupta
A11
varun gupta =LEN(A11) ANS:- 11
TRIM it removes the extra space (space before the text and after the text)
=TRIM(text)
A11
spacevarunspace =TRIM(A11) :- varun
FIND it finds the position of the character or a number
=FIND(find_text,within_text,[start_num]) {start num is not necessary to be
given}
A11
varun gupta =FIND(“n”,A11) :- 5
=FIND(“g”,A11) 7
A11
varun gupta =REPLACE(A11,7,5,”aggarwal”)
varun aggarwal
REMOVAL OF DOMAIN ID
If the domain name is different e.g yahoo.com,gmail.com etc. and it is given to remove the
domain id, the format we use will be
=LEFT(text,find”@”,text)
A
1. hrtika.verma@gmail.com =LEFT(A1,FIND(”@”,A1)) hritik.verma@
2. anjali.solanki@yahoo.in =LEFT(A2,FIND(”@”,A2)) anjali.solanki@
3. anshu.jain@hotmail.com =LEFT(A3,FIND(”@”,A3)) anshu.jain@
REMOVAL OF @
EXAMPLE 2
TO FIND THE FIRST NAME
EXAMPLE 3
TO FIND THE LAST NAME FROM FULL NAME
EXAMPLE 4
TO CHANGE THE DOMAIN ID