Skip to content
Google Sheets

PROPER function in Google Sheets

Capitalizes each word in a specified string.

=PROPER(text_to_capitalize)

PROPER syntax and parameters

One argument, one required.

  • text_to_capitalizestringRequired

    The text which will be returned with the first letter of each word in uppercase and all other letters in lowercase.

PROPER examples

Formulas you'll actually reuse.

  1. A shouted name tidied into Title Case:

    =PROPER(A2)

    Result"Maria Lopez"

  2. Undo the apostrophe-S that PROPER capitalises:

    =SUBSTITUTE(PROPER(A2), "'S", "'s")

    Result"O'Brien's"

PROPER in Excel

Same name — your formula ports as-is.

Try PROPER in the playground

Edit the example — nothing to install.

Preloaded with the PROPER formula from Example 1 — change anything and watch it respond.

Loading the editor…