Sheet Summary Formula with multiple criteria
Hello! I'm trying to create a sheet summary formula to count number of items due in the next week. Here's what I have so far, but it's returning the error "#INVALID OPERATION"
=SUMIFS(Counter:Counter, [Due Date INTERNAL]:[Due Date INTERNAL], AND(>=TODAY(), <TODAY(7)), [Submission Date]:[Submission Date], ="")
The "Counter" column has the number of items due. I'm hoping the formula will look in the "Due Date INTERNAL" column for dates between today and 7 days from now, that haven't been submitted yet, then sum the amount in "Counter."
Thank you for looking!
Best Answer
-
You would need "@cell" references inside of the AND function:
=SUMIFS(Counter:Counter, [Due Date INTERNAL]:[Due Date INTERNAL], AND(@cell>=TODAY(), @cell<TODAY(7)), [Submission Date]:[Submission Date], ="")
Answers
-
You would need "@cell" references inside of the AND function:
=SUMIFS(Counter:Counter, [Due Date INTERNAL]:[Due Date INTERNAL], AND(@cell>=TODAY(), @cell<TODAY(7)), [Submission Date]:[Submission Date], ="")
-
Aha! A small but important detail. Thanks so much Paul!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!