Cross-Referencing Sheets to Track Email Addresses/Form Submitters
We are planning to send out a form and are trying to figure out the easiest way to track when a person completes the form without having to manually go back and forth from the contact list sheet to the form sheet. Does anyone know how to cross-reference sheets where it will automatically check a box or indicate "Yes" when the email addresses match?
Best Answer
-
Yes. You could use a COUNTIFS to see how many times that email address pops up on the form sheet and then use an IF statement to say that IF that COUNTIFS is greater than zero, check the box.
=IF(COUNTIFS({Form Sheet Email Address Column}, @cell = [Email Address]@row)> 0, 1)
Answers
-
Yes. You could use a COUNTIFS to see how many times that email address pops up on the form sheet and then use an IF statement to say that IF that COUNTIFS is greater than zero, check the box.
=IF(COUNTIFS({Form Sheet Email Address Column}, @cell = [Email Address]@row)> 0, 1)
-
Thank you! Based on your formula, I was able to substitute the 1 for "Yes", which is what I needed. Thanks again!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 67 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!