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.
-
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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!