How can I tick a box based on two criteria?
I'd like to tick a checkbox based on another checkbox being ticked and for a specific task name. I have the following formulas that work individually. How can I combine them?
=IF([Checkbox]@row = 1, 1,0)
=IF([Task name]@row = "XYZ", 1,0)
Best Answers
-
I think I found my own answer - FYI for anyone who has the same query:
=IF(Checkbox@row = 1, IF([Task Name]@row = "XYZ", 1, 0))
-
Hi @Stephen Everiss,
Your formula would look like this:
=IF(AND(Checkbox@row = 1, [Task Name]@row = "XYZ"), 1, 0)
Sample:
Hope this helps, but if you've any problems/questions then let us know!
Answers
-
I think I found my own answer - FYI for anyone who has the same query:
=IF(Checkbox@row = 1, IF([Task Name]@row = "XYZ", 1, 0))
-
Hi @Stephen Everiss,
Your formula would look like this:
=IF(AND(Checkbox@row = 1, [Task Name]@row = "XYZ"), 1, 0)
Sample:
Hope this helps, but if you've any problems/questions then let us know!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 470 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!