Check a box if 3 criteria (checkbox columns) are met
Mspencer
✭✭✭
I'm trying to identify registrants for a training who no showed using a checkbox column. I have checkbox columns for the following critieria:
- Invited
- Attended
- Declined
I'd like a formula for my No Show column to return a checked box for anyone who:
- Was invited (box checked)
- Did not attend (unchecked box)
- Did not decline (unchecked box)
Current formula I've tried is: =IF(COUNTIFS(InviteSent:InviteSent, 1, Attendance:Attendance, 0, Declined:Declined, 0) > 0, 1)
But it's checking all boxes, even if someone attended.
Tags:
Answers
-
=IF(AND([InviteSent]@row = 1, [Attendance]@row = 0, [Declined]@row = 0), 1, 0)
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
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!