Hello, I am using this formula to modify all text of a column to sentence case, but I have some cells that the text starts with numbers.
Is there a way to make the first Letter after the number in Upper Case?
Thank you in advance.....
=UPPER(LEFT(B1,1))&LOWER(RIGHT(B1,LEN(B1)-1))