Convert Last, First Name to First Last Name
I have a contact list of Last Name, First Name; i.e. Doe, John. I would like to create a helper column with First Name Last Name; i.e. John Doe. Is there a formula to do that?
Thanks in advance!
Best Answer
-
Hi, Zee. Someone may have a more elegant solution, but here's what I suggest:
Name is the column with your current data.
In the "Last Name" column, you want this formula: =LEFT(Name@row, FIND(",", Name@row - 1)
In the "First Name" column, you want this formula: = RIGHT(Name@row, LEN(Name@row) - FIND(",", Name@row))
Then, in the "Full Name" column, you want this formula: =[First Name]@row + " " + [Last Name]@row (make sure there is a space between your open and closed quotation marks)
Answers
-
Hi, Zee. Someone may have a more elegant solution, but here's what I suggest:
Name is the column with your current data.
In the "Last Name" column, you want this formula: =LEFT(Name@row, FIND(",", Name@row - 1)
In the "First Name" column, you want this formula: = RIGHT(Name@row, LEN(Name@row) - FIND(",", Name@row))
Then, in the "Full Name" column, you want this formula: =[First Name]@row + " " + [Last Name]@row (make sure there is a space between your open and closed quotation marks)
-
This works! Thank you much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!