Reputation: 29
Im needing help making all emails in a google sheets capitalized in the column. When I try it deletes them all. can you help?
Upvotes: 0
Views: 56
Reputation: 1
if your values are in column A use this in column B row 1:
=INDEX(UPPER(A:A))
also you can use proper to get capital for each word:
=INDEX(PROPER(A:A))
Upvotes: 0