IF Formula using Dropdowns and Checkboxes
Hi, Smartsheet formula novice here! I hope the following will make sense.
I'm attempting to create an IF formula that makes use of two drop down options from 1 column as well as checkboxes from 2 additional columns.
Currently, the below 3 columns must be checked for the 4th column to be checked (starred) off.
=IF([Entered on Homes with Access to Minibus Group]@row = "true", IF(AND([Entered on Home Group]@row = "true", [Home Admin Notified]@row = "true"), true, false), false)
I would like to replace the first column's checkbox with a drop down list (pictured below), with the following conditions required for the fourth column to be checked off:
"Yes" or "No Minibus"
AND
Columns 2 and 3 selected
Many thanks for your time and please do let me know if you require more information.
Best Answer
-
Try something like this:
=IF(AND(OR([Column1]@row = "Yes", [Column1]@row = "No Minibus"), [Column2]@row = 1, [Column3]@row = 1), 1)
Answers
-
Try something like this:
=IF(AND(OR([Column1]@row = "Yes", [Column1]@row = "No Minibus"), [Column2]@row = 1, [Column3]@row = 1), 1)
-
Thank you, Paul!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 61 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!