Sumifs returning #unparseable counting RAID due within 7 days
Hello - Receiving an #unparseable error when counting RAIDs due within 7 days. screenshot of the columns status and due date.
Formula -
Best Answer
-
The most immediate issue is the closing parenthesis after the [Due Date]:[Due Date] range. It needs to be removed.
If you are trying to get the count for within the next 7 days, this should work for you:
=COUNTIFS(Status:Status, @cell <>"03 Closed / Deferred", [Due Date]:[Due Date], AND(@cell<=TODAY(+7), @cell>= TODAY()))
Answers
-
@jmacdal Try this formula, why do you have And? Do you need more criteria's?
=COUNTIFS(Status:Status, <>"03 Closed / Deferred", [Due Date]:[Due Date], >=TODAY(+7))
-
Hi @jmacdal ,
You don't need the @cell reference. Try this.
=COUNTIFS(Status:Status, <>"03 Closed / Deferred", [Due Date]:[Due Date], >=TODAY(7))
Hope that helps,
Dave
-
The most immediate issue is the closing parenthesis after the [Due Date]:[Due Date] range. It needs to be removed.
If you are trying to get the count for within the next 7 days, this should work for you:
=COUNTIFS(Status:Status, @cell <>"03 Closed / Deferred", [Due Date]:[Due Date], AND(@cell<=TODAY(+7), @cell>= TODAY()))
-
Thank you, all. Samuel and Dave got rid of the error but returned 0 count, which there were 11. Paul's returned the correct total of 11.
-
Makes sense given the need, glad you got it working!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 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!