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
- 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!