In Excel: use =UPPER(text), =LOWER(text) or =PROPER(text) — PROPER capitalises the first letter of every word, which is right for names and wrong for almost everything else.
Syntax
Arguments
| Argument | Description | |
|---|---|---|
text | required | The text to recase. Numbers and punctuation pass through unchanged. |
Related functions
37 characters
What this does
These three recase text. UPPER and LOWER are unsurprising; PROPER is the one that needs care, because it capitalises the first letter of every word and lowercases the rest. That works on "JOHN SMITH" and mangles "IBM" into "Ibm", "O'Brien" into "O'brien" and "3M" into "3M" only by luck. None of them changes the underlying data — they return a new string, so cleaning a column means adding a helper column and then pasting the result back as values. Numbers and punctuation pass through untouched. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “proper formula in excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a text operation that turns messy entries into clean, usable data, but the practical win is that someone else can open the file and understand what happened without asking you.
A worked example
Normalising imported names typed inconsistently: =PROPER(TRIM(A2)) turns " jOHN smith " into "John Smith". Standardising product codes for matching: =UPPER(B2) makes "ab-1024" and "AB-1024" comparable. Note the limit: =PROPER("IBM annual report") returns "Ibm Annual Report", which is why acronym-bearing text needs a manual pass or a SUBSTITUTE afterwards. These three are the fastest fix for inconsistently typed imports, provided you know PROPER cannot be trusted with acronyms. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.
In Google Sheets
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. Treat “proper formula in excel” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.
Common mistakes
- Trusting PROPER on data containing acronyms or names like McDonald and O'Brien, which it capitalises wrongly.
- Expecting the original cells to change; these return a new string and leave the source alone.
- Recasing before trimming, so leading spaces make PROPER capitalise the wrong character.
Frequently asked questions
How do I change case in Excel?
Use =UPPER(A2), =LOWER(A2) or =PROPER(A2) in a helper column, then paste the result back as values.
Why does PROPER break acronyms?
It lowercases everything after the first letter of each word, so IBM becomes Ibm. Acronym-bearing text needs a correction pass afterwards.
Is there a sentence-case function?
No. Combine UPPER on the first character with LOWER on the rest: =UPPER(LEFT(A2,1))&LOWER(MID(A2,2,999)).