CHECKBOX CONDITIONAL

I have a task and few subtasks that have a column which is of checkbox format.
I need to create a condition, such that, if all the check boxes for the subtasks are ticked, then the check box for the main task should also be ticked, else it should be left unchecked.Β
I tried to apply the following:Β
IF(AND(SUBTASK1:SUBTASK5) = 1, 1, 0)
However it is not working.Β
Please refer to attached image for reference.Β
Β
Comments
-
Hi,
Try this.
Place the below formula in the parent checkbox cell.
=IF(COUNTIF(CHILDREN(), 0) > 0, 0, 1)
Hope that helps!
Have a fantastic day!
Best,
AndrΓ©e StarΓ₯
Workflow Consultant @ Get Done Consulting
SMARTSHEET EXPERT CONSULTANT & PARTNER
AndrΓ©e StarΓ₯ | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E: andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
Thank you
It worked!
-
Excellent!
Happy to help!
Best,
AndrΓ©e
SMARTSHEET EXPERT CONSULTANT & PARTNER
AndrΓ©e StarΓ₯ | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E: andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.