Hi - function to remove a flag with a checkbox

Hi All
I am sure this will be simple for someone, however I can't find the right solution.
I have a flag column which has the following formula to calculate and is very simple and works perfectly:
=IF([Activity Start Date]@row <= TODAY(), 1, 0)
However I would like this flag then to be cleared if one/or other of two additional columns (which are both checkboxes) are ticked. These columns are called 'Hold' and 'Complete'.
I have tried various solutions - but quite new to SmartSheets and everything always comes back unparseable!
Any solution would be much appreciated.
Thanks
Claire
Best Answers
-
=IF(AND([Activity Start Date]@row <= TODAY(),[Hold]@row=0, [Complete]@row=0),1,0)
-
=IF(AND([Activity Start Date]@row <= TODAY(),[Hold]@row=0, [Complete]@row=0,[AOP Initiative RAG]@row <> "Green"),1,0)
Answers
-
=IF(AND([Activity Start Date]@row <= TODAY(),[Hold]@row=0, [Complete]@row=0),1,0)
-
That works perfectly - thank you so much. I forgot however that the flag also needs to clear if another column [AOP Initiative RAG] contains a green symbol?
-
=IF(AND([Activity Start Date]@row <= TODAY(),[Hold]@row=0, [Complete]@row=0,[AOP Initiative RAG]@row <> "Green"),1,0)
-
Thank you so much!
Help Article Resources
Categories
Check out the Formula Handbook template!