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)
SSFeatures - The browser extension that adds more features into SmartSheet.
- Report PDF generator that supports grouped and summarized reports
- Automatic sorting, sorting with filters, saving sort settings
- Hiding and unhiding columns, and spell checking
-
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
- 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!