Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Find Difference Between Fields

Topic Labels: Formulas
1333 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Shannon_Stallon
4 - Data Explorer
4 - Data Explorer

Hi There! I’m looking to find the difference between two fields. Specifically, I have a field for who Registered for a meeting and a field for who actually Attended that meeting. I want to be able to see who Registered but did not attend OR who Attended but did not register. Thanks for any help you can provide!

2 Replies 2
Mike_McLaughlin
8 - Airtable Astronomer
8 - Airtable Astronomer

in your output field, do you want results like, ‘Attended and Registered’, ‘Only Attended’, and ‘Only Registered’?

If so you’ll want to do something like =if(AND({Attendance}=“yes”,{Registered}=“yes”),“Attended and Registered”,if({Attendance}=“yes”,“Only Attended”,“Only registered”))

I may have forgotten a parenthesis, but basically this is probably the type of IF() and AND() structure you would need.

Shannon_Stallon
4 - Data Explorer
4 - Data Explorer

Thank you for this and I’m sure it would work but it looks a bit greek to me. I’m very new to AirTable. Where would I add this “code”? Thank you!!