# of Completed tasks between 3 and 2 weeks ago?
I can get the number of completed tasks last week (7 days) using
=COUNTIFS(Status:Status, "Complete", Finish:Finish, @cell > TODAY(-7))
How do I get the number of tasks completed, say... between 7-14 days in the past?
thank you,
Best Answer
-
You can do it 1 of 2 ways, you can use an AND formula or just have 2 day formulas.
=COUNTIFS(Status:Status, "Complete", Finish:Finish, @cell > TODAY(-14), Finish:Finish, @cell < TODAY(-7))
OR
=COUNTIFS(Status:Status, "Complete", Finish:Finish, AND(@cell > TODAY(-14), @cell < TODAY(-7))
Answers
-
You can do it 1 of 2 ways, you can use an AND formula or just have 2 day formulas.
=COUNTIFS(Status:Status, "Complete", Finish:Finish, @cell > TODAY(-14), Finish:Finish, @cell < TODAY(-7))
OR
=COUNTIFS(Status:Status, "Complete", Finish:Finish, AND(@cell > TODAY(-14), @cell < TODAY(-7))
-
Nailed it!
Thanks, Eric. Much appreciated
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!