Countifs that aren't certain status and are within specific time frame
Options
lhumphrey
ββ
I want the formula to show how many items are assigned in the next two weeks that also are not marked Complete, Cancelled, or Hold. When I use the first part of the formula on its own it works, but I want it to show only those within the next two weeks.
=COUNTIFS(Status:Status, NOT(OR(@cell = "Complete", @cell = "Cancelled", @cell = "Hold")), [End Date]:[End Date], AND(@cell >= TODAY(), @cell < TODAY() + 14)))
Answers
-
You have one too many closing parenthesis on the end.
=COUNTIFS(Status:Status, NOT(OR(@cell = "Complete", @cell = "Cancelled", @cell = "Hold")), [End Date]:[End Date], AND(@cell >= TODAY(), @cell < TODAY() + 14))
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!