Populating a field when two checkboxes are checked
Hi all,
I'm just starting to learn more about formulas and am a little stumped on this one.
I have two columns that are checkboxes: "Dates Received" and "Prices Received". When both checkboxes are checked, I would like it to populate a field in another column with "1". When neither are checked, or only one is checked, I would like it to return "0".
I have been using a formula like this (=IF([Column Name]1 = "true", 1, 0) when I need to do the above with only one column. It is the combing the results of the two columns where I get stuck. Any help would be appreciated!
Best Answer
-
Try this:
=IF(AND([Date Received]@row = 1, [Prices Received]@row = 1), 1, 0)
Answers
-
Try this:
=IF(AND([Date Received]@row = 1, [Prices Received]@row = 1), 1, 0)
-
Thank you, Nic! That worked great. Appreciate your help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 58 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!