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:
-
This content has been removed.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!