MATCH multi-dropdown to another column text
Hi! I'm trying to match a column containing job titles to a dropdown list containing the same titles, so that when certain titles are selected in "Audience1", it will return an email address when there's a match.
I want "Distro List" to populate with "Business Email Information Email Address" where "Title" matches whatever titles are selected in "Audience".
I've tried various combinations of INDEX, MATCH, and HAS with no success. Thank you in advance!
Answers
-
You would need a JOIN/COLLECT, but...
There is currently no way to join multiple emails into a string that will be useable for "Current User" filters or automations. It is simply a text string.
Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!
-
Try this
=IF(CONTAINS([Title], [Audience]), [Business Email Information Email Address], "")
-
Sorry, misunderstood that you wanted it compiled. Yes, Paul is correct about that part.
If you put the Contains formula in the Distro list column as a column formula and lock the reference to the Audience cell, you could come up with a report that filters based on non-blank cells to give you a quick list. Then select the cells with emails in them from the report and paste into your To: field in your email. It works just fine.
-
@Austin Smith you were correct, I just wanted the email returned for that row. I ended up using:
=IFERROR(INDEX(COLLECT([Business Email Information Email Address]@row, Title1, HAS(@cell, Title@row)), 1), "") because CONTAINS was picking up titles where it contained part of the job title but not all (example, EVP Operations was being counted as VP Operations).
-
Nice! Don't know that I've run across that that pushed that issue out. Thanks for the heads up.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!