Is there a way to convert a large number of contact cells at once?
I have over 5000 rows in a sheet that has been exported from ServiceNow. Every row has a contact cell that is filled out with a raw name, no company email. Is there a way of converting every cell into the respective company email for that person at once?
The manual method, typing their name and selecting the pop up, will take way too long.
Maybe there is a solution using the amount of unique contacts in a separate sheet? There are 290 at the moment in this sheet (the number of rows grows daily).
Any ideas to a solution would be greatly appreciated.
Answers
-
Without seeing the data you're working with you can experiment with something like this:
=SUBSTITUTE([Name Column]@row, " ", ".") + [Email Domain]@row
This will take the name, substitute spaces " " with a "." then add the email domain.
If the domain is always the same you can use this as well and do away with the Email Domain column:
=SUBSTITUTE([Name Column]@row, " ", ".") + "@company.com"
I just used the email domain column to for a visual here:
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.4K Get Help
- 364 Global Discussions
- 202 Industry Talk
- 430 Announcements
- 4.4K Ideas & Feature Requests
- 137 Brandfolder
- 129 Just for fun
- 128 Community Job Board
- 446 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 284 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!