In Excel: change case with a helper column: =UPPER(A2) for ALL CAPS, =LOWER(A2) for lowercase, =PROPER(A2) to capitalize each word — then paste the results back as values. Excel has no Shift+F3 shortcut like Word.
37 characters
What this does
Excel deliberately has no "Change Case" button; case conversion is done with the three text functions UPPER, LOWER, and PROPER in a helper column. PROPER capitalizes every letter that follows a non-letter, which is right for names ("anna meyer" → "Anna Meyer") but quirky for words with apostrophes or codes ("don't" → "Don'T"). Sentence case needs a small combined formula. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. For “change upper case to lower case in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. 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. That is what makes a text operation that turns messy entries into clean, usable data useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
Column A holds shouting customer names like "ANNA MEYER". In B2, =PROPER(A2) returns "Anna Meyer"; filling down fixes the whole list. Copy column B, then Paste Special ▸ Values over column A and delete the helper — the originals are replaced in place. Imported data arrives SHOUTING or all-lowercase constantly — CRM exports, form submissions, legacy systems. A helper column with one function call normalizes thousands of rows in seconds. 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. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. If you take one thing from this page on “change upper case to lower case in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.
Common mistakes
- Looking for Word's Shift+F3 — Excel does not have it.
- Deleting the original column before pasting the formulas back as VALUES, which breaks the references.
- Expecting PROPER to handle "McDonald" or "iPhone" — it returns "Mcdonald" and "Iphone".
- Running PROPER over codes like "A-1b" and getting "A-1B" — letters after digits and dashes get capitalized too.
Frequently asked questions
Is there a change-case shortcut in Excel?
No. Unlike Word's Shift+F3, Excel needs the UPPER/LOWER/PROPER functions, Flash Fill, or a paste from the converter above.
How do I convert case without formulas?
Type the first corrected value and press Ctrl+E (Flash Fill) — or paste your column through the converter above and copy the result back.
What does PROPER do with apostrophes?
It capitalizes the letter after them: "o'brien" becomes "O'Brien" (good) but "don't" becomes "Don'T" (usually not wanted).
Other ways people ask this
On the way here you may have searched this as “excel formula upper and lower case”, “how to change lower case to upper case in excel”, “how to make lower case upper case in excel” and “how to change to lower case in excel” — it is all the same task, and this page is the single, complete answer to it.
Why do people search for this in so many different ways?
Because the same task has many names. “excel formula upper and lower case”, “how to change lower case to upper case in excel”, “how to make lower case upper case in excel” all point at the one operation explained on this page, which is why they all lead here.