Outserved
Outserved

Reputation: 29

Capitalizing all words in a column

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

Answers (2)

player0
player0

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

Rajput
Rajput

Reputation: 605

You can use the Function Upper

=UPPER(Cell_Reference)

Upvotes: 1

Related Questions