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
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!