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
- Customer Resources
- 67.1K Get Help
- 448 Global Discussions
- 154 Industry Talk
- 503 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!