I want to make, in MS Excel, an equivalent of the MS Word Sentence case, to often be able to convert Excel text strings from all-caps to sentence case (without having to teach myself VBA).
My one-parameter formula to do this is =(LEFT(B3) & MID(LOWER(B3),2,LEN(LOWER(B3)))).
(I have seen Using Excel sheet as a function but that isn't quite what I'm seeking.)
Can I make a function that would allow me to simply reference the cell holding the all-caps string, e.g. =Sentence(B3) ?
Thank you for your thoughts/advice
=UPPER(LEFT(B3;1)) & LOWER(MID(B3;2;LEN(B3)))formula. Now, wherever you write=Sent, the cell will work for the text from the cell on the left (as if you were callingSentwith theRC[-1]parameter) – JohnSUN Oct 21 '22 at 11:37