Capitalizes the first letter in each word of a text string and converts all other letters to lowercase.
Sintassi
PROPER(text)Argomenti
textobbligatorio
The text string you want to convert to proper case.
The PROPER function is useful for formatting names, titles, or addresses that have inconsistent casing. It treats any character that is not a letter as a word separator, ensuring that the character immediately following it is capitalized.
=PROPER("excel IS FUN")→Excel Is FunConverts the all-caps string into proper case.
=PROPER("john doe")→John DoeCapitalizes the first letter of both 'john' and 'doe'.
Select the cell
Click on the cell where you want the converted text to appear.
Enter the formula
Type =PROPER( followed by the cell reference containing the text, then press Enter.
Yes, it treats non-letter characters as separators and capitalizes the letter immediately following them.