Gunakan huruf besar pada huruf pertama di setiap kata
=PROPER(text)
| Parameter | Deskripsi |
|---|---|
text |
The text that should be converted to proper case. |
=PROPER("apple") // returns "Apple"
=PROPER("APPLE") // returns "Apple"
Numbers or punctuation characters inside a text string are unaffected:
=PROPER("XYY-020-kwp") // returns "Xyy-020-Kwp"
If a numeric value is given to PROPER, number formatting is removed. For example, if cell A1 contains the date June 26, 2021, date formatting will be
=PROPER(A1) // returns "44373"
One limitation of the PROPER function is that it will capitalize all words in a text string. If you only want to capitalize the first word (i.e. capit
=REPLACE(A1,1,1,UPPER(LEFT(A1)))