Automated Check box when a sum of cells is greater than another cell

I am trying to create a formula that checks the box if two cells are equal to one other cell. Getting so frustrated, please help! π This is the formula I have that is not working for me:
=IF(AND(TotalA@row, TotalR@row = TotalM@row, 1, 0))
What am I doing wrong?
Best Answer
-
Try this:
=IF(SUM(TotalA@row, TotalR@row) = TotalM@row, 1, 0)
Answers
-
Hi Cheri, please try the following formula:
=IF(AND([Column2]@row = [Column4]@row, [Column3]@row = [Column4]@row), 1, 0)
I also noticed that in your formula one of your ")" is in the wrong location.
Before:
=IF(AND(TotalA@row, TotalR@row = TotalM@row, 1, 0))
After:
=IF(AND(TotalA@row, TotalR@row = TotalM@row), 1, 0)
Hope this helps!
Nathan Braun (Founder of SSFeatures) (nathan@ssfeatures.com) (LinkedIn)
SSFeatures - The browser extension that adds essential features into Smartsheet.
-
Try this:
=IF(SUM(TotalA@row, TotalR@row) = TotalM@row, 1, 0)
-
Thank you so much @Nic Larsen !! That worked!!! π I just spent soooooo much time on that. You're a lifesaver.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!