Forum Discussion
grisp42
Mar 29, 2023Copper Contributor
formula for upper & lower case in same column
I am trying to find a formula to change the last names to uppercase followed by a comma then proper case the first name, in the same column.
- mathetesSilver Contributor
In general, however, I would avoid putting first and last names into the same cell. Why? Doing that limits flexibility. Keeping them separate allows you to assemble such things as alphabetical listings sorted by last name AND also create name labels for various purposes with first name first.
- mathetesSilver Contributor
A very slight variation on what my friend HansVogelaar has written for you.
=UPPER(LEFT(A2,FIND(",",A2)))&PROPER(RIGHT(A2,LEN(A2)-FIND(",",A2)))
works as shown here
- grisp42Copper ContributorThank you so much!
Let's say you have a name such as
presti, christine
in A2. Enter the following formula in another cell in row 2:
=UPPER(LEFT(A2,FIND(",",A2)-1))&PROPER(MID(A2,FIND(",",A2),100))
Fill down as far as needed.
- grisp42Copper Contributor
Thank you so much!HansVogelaar