SUM IF a checkbox is checked
I have a checkbox named "Confirmed". I have two other columns "Scheduled Start Date" and "Projected Start" that Im wanting to Sum in a column called "Sync Alert Start". But I'm only wanting the Sum formula to return a value if the checkbox "Confirmed" is checked. If not, return 0.
Here is what I've tried, but no success.
=SUMIF([Confirmed]@row = 1),([Scheduled Start Date]@row - [Projected Start]@row, " ")
Best Answer
-
Are you trying to return the difference between "Scheduled Start Date" and "Projected Start" in the "Sync Alert Start" column if the "Confirmed" box is checked?
If I understand what you're trying to accomplish then I think you should try using just an IF statement. If the box is checked, it will do the calculation (no SUM calculation required):
=IF(Confirmed@row = 1, [Scheduled Start Date]@row - [Projected Start]@row, "")
Answers
-
Are you trying to return the difference between "Scheduled Start Date" and "Projected Start" in the "Sync Alert Start" column if the "Confirmed" box is checked?
If I understand what you're trying to accomplish then I think you should try using just an IF statement. If the box is checked, it will do the calculation (no SUM calculation required):
=IF(Confirmed@row = 1, [Scheduled Start Date]@row - [Projected Start]@row, "")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 445 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!