Text

PROPER Formula

PROPER capitalizes the first letter of each word in a text string and lowercases all other letters. It is ideal for formatting names, titles, and addresses to title case. However, it has limitations with acronyms, possessives, and words that should stay uppercase like "LLC" or "USA".

Syntax

PROPER(text)
ParameterDescription
text Parameter of the PROPER function.
Try PROPER in Viztab — free, no signup

Examples

Title case a name

Formula
=PROPER(A2)
Returns: "John Smith" — capitalizes first letter of each word from "john smith" or "JOHN SMITH"

Format an address

Formula
=PROPER(A2)
Returns: "123 Main Street, Springfield" — from "123 MAIN STREET, SPRINGFIELD"

Clean up pasted data

Formula
=PROPER(TRIM(LOWER(A2)))
Returns: neatly formatted title-case text with extra spaces removed

Common Errors

#VALUE!

The argument is an error value. PROPER requires a text string or number (numbers are returned as-is).

Tips

Acronym limitation

PROPER converts "USA" to "Usa" and "LLC" to "Llc". You may need SUBSTITUTE to fix these: =SUBSTITUTE(PROPER(A1),"Llc","LLC").

After apostrophes

PROPER capitalizes after apostrophes: "o'brien" becomes "O'Brien", which is usually correct for names.

Not for sentences

PROPER capitalizes every word, so "the quick brown fox" becomes "The Quick Brown Fox" — not suitable for sentence case.

Try PROPER in Viztab

Import your data and use PROPER with 370+ other formulas. No signup required.

Open Viztab

Related Formulas