Back to functions
Text2026-06-132 related articles

PROPER Function in Excel

Capitalize the first letter of each word-like segment in a text string.

Syntax

PROPER(text)

Arguments

text

Required

The text, formula result, or cell reference you want to convert to proper case.

What it returns

Returns text with capitalization adjusted to proper case.

What PROPER does

PROPER capitalizes the first letter in a text string and letters that follow non-letter characters, while converting the remaining letters to lowercase. It is useful for cleaning names, titles, and labels that arrive in inconsistent case.

Practical examples

Convert text in a cell to proper case

=PROPER(A2)

This is useful when imported names or titles are in all caps or random case.

Normalize a typed phrase

=PROPER("2-way street")

This returns a proper-cased version of the phrase while keeping number-led segments intact.

Common mistakes and notes

PROPER is not language-aware title casing

It changes letters after non-letter characters, which can produce results that are technically correct for Excel but not always ideal for names or branded words.

Numbers and punctuation affect capitalization boundaries

That is why strings like 2-way street and 76budget can produce results you may want to review manually.

Related functions

Related articles

Deep dives, troubleshooting guides, and practical examples that use PROPER.

Official documentation