COUNTIFS for individual weeks
I reached out for assistance recently about formulas to count specific projects for individual weeks. The formula assistance I received counts projects from today + next 7 then 13 days then 21 days.
What the formulas are not doing is only counting from day 8 to day 13 from today.
Here are my formulas...
=COUNTIFS(Start:Start, <=TODAY(), Start:Start, <=(7)) this one works for current week
=COUNTIFS(Start:Start, <=TODAY(8), Start:Start, <=(13)) this doesn't work, Counts from 0 to 13
Thanks
Comments
-
=COUNTIFS(Start:Start, <=TODAY(8), Start:Start, <=(13))
This is counting from 0 - 13 because you are saying anything less than or equal to 8. When counting in the "middle" like that, you need to specify greater than the highest number in your last formula, but less than whatever number you want.
=COUNTIFS(Start:Start, >TODAY(7), Start:Start, <=(13))
Try this.
Your next formula would start with
=COUNTIFS(Start:Start, >TODAY(13).........
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!