Unsolved Text Function
Unsolved Text Function
1 Text functions
2
3 example for upper cae and lower case
4
5 Name upper case(capital) formula names lower(small letter) formula
6 priya PRIYA =UPPER(A6) TEENA teena =LOWER(D6)
7 anu ANU =UPPER(A7) REENA reena =LOWER(D7)
8 deepa DEEPA =UPPER(A8) POONAM poonam =LOWER(D8)
9 geeta GEETA =UPPER(A9) PINKY pinky =LOWER(D9)
10
11 example for proper case(to make each and every word in capital letter)
12 names proper formula
13 ivY comPutEr educATion Ivy Computer Education =PROPER(A13)
14 jaYanGAr bAngAlOre Jayangar Bangalore =PROPER(A14)
15 example for len function to find the length of the cell including space
16
17 phone len formula
18 23 2 =LEN(A18) 0
19 35345353 8 =LEN(A19) 0(
20 ivy computer education 23 =LEN(A20) 0 0
21 hi 10 =LEN(A21) =TEXTJOIN(DELIMTER,TRUE/FALSE,CELL1,CELL2,................)
22 hi 23 =LEN(A22) =TEXTJOIN(CHARCTER WHICH SEPARTAES THE VALUE,IGNORES EMPTY
23 example for textjoin ( to combine multiple cell content in to single cell) CELL,CEEL1,CELL2,CELL3.............)
24
25 names place dept phone sal concatenate FORMULA
26 , bang sales 35354534 3434 bangsales353545343434 =CONCAT(B26,C26,D26,E26)
27 reena mysore prod 344 mysoreprod344 =CONCAT(B27,C27,D27,E27)
28 priya chennai mang 34234324 2555 chennaimang342343242555 =CONCAT(B28,C28,D28,E28)
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
A B C D E F G H I J
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
A B C D E F G H I J
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
vlook up: vertically looking for a value (column wise searching records in a table) , searching relatrd records
162 searching is done from left to right not in reverse order
163 =vlookup(value aerach , table range, coulumn to extract,0)
164
165
166
167
168
169 to create a table name
170 select the entire table
select formula tab
171 select define name
172 enter the table name
173 select ok
174
175
176
177
178
179
180
181
182
183
184
185
186
A B C D E F G H I J
187
188
189 horizontaly looking for a value in a table(row wise searching for record in a table)
190 searching takes place from top to down
191 =hlookup(searching value,table name,row number,0)
192
193
194