Is it possible to do a lookup in a field that has multiple data in a cell.
I want to check if the emails under contact list are present in the table below.
Contact list
john.doe@abc.com,sally@abc.com,rall@abc.com
I want to check if any of those email addresses are present in another sheet the looks like this:
Email Status
john.doe@abc.com Yes
frank@abc.com Yes
sally@abc.com Yes
brand@abc.com Yes
rall@abc.com Yes
Answers
-
Is the contact list set up to house multiple contacts in a single cell, or are they comma separated values as in your example above?
-
The contact list is setup to separate each value by a comma
-
You would need to use a Multi-select Dropdown Type helper column on the Contact List sheet. Then you would put this in the helper column:
=SUBSTITUTE([Contact List]@row, ",", CHAR(10))
Then to check the box you would use:
=IF(HAS([Helper Column]@row, Email:Email), 1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!