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