Show dates beyond 90 days
We need to report on Jobs that has not been touched in the last 90 days.
When we start a new Job we copy 4 "template" rows which include dates in the future.
When I run my current report, it looks for dates on the parent row, but this row is showing the oldest date for the children.
If a job has not been touched for over 90 days, but then is worked on again within the last 90 days, my parent row still shows the oldest date so is not picked up by the report.
An added complication is, because the template children rows contain dates in the future I cannot search for the latest date
I want my report to show The parent row only
based on the following criteria for the children rows:
No children have a date that is within the last 90 days
No children have a date that is in the future
Thank you in advance
Comments
-
You would want to create a "Helper" checkbox column.
In this column, you would write an IF/AND statement that includes all of your criteria.
Something along the lines of
=IF(AND(COUNT(CHILDREN(Task@row)) > 0
to determine whether or not it is a parent row.
=IF(AND(COUNT(CHILDREN(Task@row)) > 0, COUNTIFS(CHILDREN([Date Column]@row, @cell >= TODAY(-90)) = 0
establishes that no children are greater than 90 days ago (which also covers no dates in the future).
=IF(AND(COUNT(CHILDREN(Task@row)) > 0, COUNTIFS(CHILDREN([Date Column]@row, @cell >= TODAY(-90)) = 0), 1)
and we tell it to check the box if it meets this criteria.
.
Let me know how it works for you.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 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!