Forum Discussion
Kcryptonian
Jan 15, 2023Copper Contributor
How to capitalize a specific word in a set of words?
Can someone explain to me or give me a trick on how to capitalize (or change to upper case) only a specific words in a particular constant position in an excel column? I have a column list containin...
- Jan 15, 2023
Kcryptonian Perhaps something like this?
=UPPER(LEFT(A1,FIND(" ",A1)-1))&RIGHT(A1,LEN(A1)-FIND(" ",A1)+1)
or
=UPPER(TEXTBEFORE(A1," "))&" "&TEXTAFTER(A1," ")
...... depending on which Excel version you have. And there are probably a dozen more ways to do this.
Harun24HR
Jan 15, 2023Bronze Contributor
Kcryptonian
Jan 15, 2023Copper Contributor
Thanks Harun, but the formular doesn't work on Excel 2010.