Formula for checked fields
Hello,
I have a sheet that is tracking tasks and I've made it so that there are 10 contact list columns followed by 10 checkbox columns. Each contact list is paired with a checkbox to indicate if an item is done like in the image below:
I want a final column to indicate if every assigned checkbox has been filled out, without any unassigned columns interfering with the outcome (for example if there are only 2 people assigned). The final column will be used as a conditional formatting indicator for our calendar, so a single "yes" response would suffice if all assignees have checked their box. How would you recommend building a formula like this?
Answers
-
Try something like this:
=IF(COUNTIFS([Done? (1)]@row:[Done? (10)]@row, @cell = 1) = COUNTIFS([Assigned (1)]@row:[Assigned (10)]@row, AND(@cell <> 1, @cell <> "")), "Yes")
Basically we count across the Done columns how many boxes are checked (1) then compare it to the count of cells from the first Assigned to the last Assigned (not checked and not blank). If those two counts match, then everything that should be checked is checked.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 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!