Reputation: 87
I have a requirement to make first letter as upper case in all the words in my excel sheet. Is there any function to make this change automatically rather than changing all the content manually.
Upvotes: 0
Views: 3218
Reputation: 36870
Use Proper()
function.
=PROPER(A1)
Or if you want only the first character of cell would be upper case and rest of the words will be lower then use.
=UPPER(LEFT(A2,1)) & LOWER(RIGHT(A2,LEN(A2)-1))
Upvotes: 2