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.
A shouted name tidied into Title Case:
=PROPER(A2)Result
"Maria Lopez"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…
Related functions
More ways Google Sheets gets this done.
- ARABICComputes the value of a Roman numeral.TextExcel
- CHARConvert a number into a character according to the current Unicode table.TextExcel
- CLEANReturns the text with the non-printable ASCII characters removed.TextExcel
- CODEReturns the numeric Unicode map value of the first character in the string provided.TextExcel
- CONCATENATEAppends strings to one another.TextExcel
- DOLLARFormats a number into the locale-specific currency format.TextExcel