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
[email protected],[email protected],[email protected]
I want to check if any of those email addresses are present in another sheet the looks like this:
Email Status
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
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!