Count dates and return a valve from another sheet
I need to reefer to another sheet and count any row that has a "Fill Superintendent" and return a number if it is =< today in column. Then a valve if its => 60 days
Thank you for any help
Comments
-
Hi Creve,
Here's a couple of formula examples that would meet your business rules:
To count the number of tasks where the Assigned To is "Fill Superintendent" and the start (or end) date is:
Less than or equal to today:
=COUNTIFS({Assigned To}, "Fill Superintendent", {Start Date}, <=TODAY())
Greater than or equal to 60 days from today AND less than 90 days from today:
=COUNTIFS({Assigned To}, "Fill Superintendent", {Start Date}, >=TODAY(60), {Start Date}, <TODAY(90))
Greater than or equal to 90 days from today AND less than 120 days from today:
=COUNTIFS({Assigned To}, "Fill Superintendent", {Start Date}, >=TODAY(90), {Start Date}, <TODAY(120))
Anything greater than 120 days from today:
=COUNTIFS({Assigned To}, "Fill Superintendent", {Start Date}, >=TODAY(120))
If needed, more information on cross-sheet formulas can be found in our help article: https://help.smartsheet.com/articles/2476606-formulas-reference-data-from-other-sheets
More information on the TODAY function can be found here: https://help.smartsheet.com/function/today
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!