If Email@Row matches an email on a different sheet, display "yes"
Hi All,
I'm hoping for some help!
I have two sheets, "Program Planning Guide Submission" and "Main Tracking" both contain email addresses.
I need a formula for when someone is added to the "Program Planning Guide Submission" sheet, a column checks if the email is already on the "Main Tracking" sheet. If it is, the column should display "Yes", if not, the column should display "No".
This is the formula I tried and all results display "No" even though I know some emails are matching.
=IFERROR(IF(MATCH(Email@row, {Main Tracking Email}, 0), "Yes"), "No")
Thanks!
Best Answer
-
Try an IF/COUNTIFS instead:
=IF(COUNTIFS({Main Tracking Email}, @cell = Email@row) = 0, "No", "Yes")
Answers
-
Try an IF/COUNTIFS instead:
=IF(COUNTIFS({Main Tracking Email}, @cell = Email@row) = 0, "No", "Yes")
-
That worked, thank you!
-
Happy to help. 👍️
-
This is great! @Paul Newcome what are you putting in the "@cell" section of the formula?
-
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
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!