Uppercase the first character and leave the rest of the sentence as-is.
Copy this formula
=UPPER(LEFT(A2,1))&MID(A2,2,LEN(A2))Unlike PROPER (which capitalizes every word), this uppercases only the first letter and keeps the remaining text unchanged — the right choice for sentences and descriptions.
=UPPER(LEFT("hello world",1))&MID("hello world",2,99)→Hello worldSentence case for a phrase.
Capitalize every word
=PROPER(A2)Use PROPER for titles and names.
PROPER capitalizes every word, which is wrong for sentences. This formula touches only the first letter.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.