Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to join the conversation:
I'm creating a simple punch list template and would like to add some date calculating functions to it but I'm very unfamiliar with creating date formulas. I'm attaching a screen shot of this rough template with a sample line already entered. I would like to create a formula that will tell me how many days past due items added to the list are based on the Date Reported column in relation to today's date. Anything longer than 5 days would signify it being "past due". I'm familiar with conditional formatting but I assume I'll need to add a column or 2 to make all of this work. Can anyone point me in the right direction?
If you want to capture the number of days past due (for display) then you'll need another column. If not, you can just calculate the number and use it in the [Past Due] column.
You'll probably want to not show past due when the [Date Corrected] is filled in.
Something like this should work:
=IF(ISDATE([Date Corrected]@row),"",TODAY() - [Date Reported]@row)
Then in the [Past Due] column, something like this
=IF([Days Past Due]@row > 5,1,0)
Craig
(untested)
What Craig said. While it may be "(untested)", it definitely looks like it should be squared away.
Thanks Paul. It was late.
No worries. I saw the time stamp (1:34 am my time) and untested, so I figured I'd at least do a quick count of parenthesis and commas and whatnot. Haha. Even the best can succumb to exhaustion.
I have a Parent row that is showing this =MAX(CHILDREN()) Which I definitely need. The intent is to show if an institution needs to change hours if there's a positive number. However if there's 0 or a negative, the institution is on track. However, the formula is also showing the highest negative number if the institution…
Not sure what to title this, because it's not really Cell Linking the way we talk about it with Smartsheet… I have two sheets, Project Sheet has project rows and a column that lists animal species impacted (currently text, but could be multi-dropdown if that helps?). The second sheet (Species Sheet) has "more info" on…
I need the Date of Sample Shipment to start within 20 days of the Date of Manufacturing Start Date. However, the predecessor I have there isn't working properly. What should it be? Thank you so much