mgm05267
Well-known Member
- Joined
- Nov 11, 2011
- Messages
- 615
Hi All,
Am using the formula
to get first letter from each word in a cell..
If Cell A1 is "Excel Forum Questions", then in B1 am getting EFQ
Need to know any simpler formula to do this....
Also, if A1 is having variable words, like "Excel Questions", then it should give only EQ
Any suggestions please....
Am using the formula
Code:
[COLOR=#000000][FONT=lucida grande]=LEFT(LEFT(A1,FIND(" ",A1,1)),1)&LEFT(SUBSTITUTE(A1,LEFT(A1,FIND(" ",A1,1)),""),1)&LEFT(RIGHT(A1,FIND(" ",A1,1)-1),1)[/FONT][/COLOR]
to get first letter from each word in a cell..
If Cell A1 is "Excel Forum Questions", then in B1 am getting EFQ
Need to know any simpler formula to do this....
Also, if A1 is having variable words, like "Excel Questions", then it should give only EQ
Any suggestions please....