How to incorporate an "is not checked" into a formula
Hi,
This formula is working great until I try and add in the section in which I want to only include revenue if the "Multi-year contract" column is unchecked. Help!
=SUMIFS([Contract Sales]:[Contract Sales], [Renewal Date]:[Renewal Date], >DATE(2024, 6, 29), [Renewal Date]:[Renewal Date], <DATE(2024, 10, 1), IF([Multi-year contract]1 = 0))
This part is causing the problem: IF([Multi-year contract]1 = 0))
Thanks!
Best Answer
-
Hey @Tricia Banks
I think you are looking for this:
SUMIFS([Contract Sales]:[Contract Sales], [Renewal Date]:[Renewal Date], >DATE(2024, 6, 29), [Renewal Date]:[Renewal Date], <DATE(2024, 10, 1), [Multi-year contract]:[Multi-year contract, 0)
However if you are looking for the SUMIFS to only happen specifically when row 1 is unchecked, then the formula is
=IF([Multi-year contract]1 = 0, SUMIFS([Contract Sales]:[Contracts Sales], [Renewal Date]:[Renewal Date], >DATE(2024, 6, 29), [Renewal Date]:[Renewal Date], <DATE(2024, 10, 1))
Will either of these formulas work for you?
Kelly
Answers
-
Hey @Tricia Banks
I think you are looking for this:
SUMIFS([Contract Sales]:[Contract Sales], [Renewal Date]:[Renewal Date], >DATE(2024, 6, 29), [Renewal Date]:[Renewal Date], <DATE(2024, 10, 1), [Multi-year contract]:[Multi-year contract, 0)
However if you are looking for the SUMIFS to only happen specifically when row 1 is unchecked, then the formula is
=IF([Multi-year contract]1 = 0, SUMIFS([Contract Sales]:[Contracts Sales], [Renewal Date]:[Renewal Date], >DATE(2024, 6, 29), [Renewal Date]:[Renewal Date], <DATE(2024, 10, 1))
Will either of these formulas work for you?
Kelly
-
The second one worked. Thanks so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 477 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 72 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!