Excel Upper Function

If you just need to excel upper function and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

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

=UPPER(text), =LOWER(text) and =PROPER(text)

Arguments

ArgumentDescription
textrequiredThe text to recase. Numbers and punctuation pass through unchanged.

Related functions

TRIMLENEXACT
ƒxCase ConverterLive
Converted text

37 characters

=UPPER(A2)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

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. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. For “excel upper function”, 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 formula 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

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

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. 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. The short version of “excel upper function”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

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)).