Proper Function in Excel

There are two ways to “proper function in excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above with a tool to test it; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

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 “proper function 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 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. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

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. Here is the takeaway for “proper function in excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

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

Other ways people ask this

People reach this page typing “excel function proper”, “how to use proper function in excel” and “how to use the proper function in excel”, among other phrasings; whichever wording you used, the fix above is the one you want.

This guide also answers

  • proper formula in excel

Why do people search for this in so many different ways?

Because the same task has many names. “excel function proper”, “how to use proper function in excel”, “how to use the proper function in excel” all point at the one operation explained on this page, which is why they all lead here.