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.
Hello Team, I need to write a logic between 2 rows. The formula should be based on the previous row status. How can we achieve this in the Smartsheet ? Here is the example. 2 teams involved. Developer and Approver. The Approver Status need to be changed based on the previous team task status. For both team, we have a…
Hi, I have a Workbook. It is a tracker. I need to add a time value in hh:mm in a start time column, this is triggered by another column entry. Then I need the the time value in the stop time column, this is triggered by a value in another column. Then I need the total hours hh:mm stop time - start time. I can do it in…
Hello, Can somebody help me to know why this formula is not working when when I make it a column formula instead of a cell formula. It becomes Invalid Ref. SUMIFS({03. Entrée Plage 1}; {03. Entrée Plage 2}; [Mois]@row; {03. Entrée Plage 3}; [Foreuse]@row; {03. Entrée Plage 4}; "Maintenance"). The formula is calculating the…