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 would like to create a timestamp that records the time and date the first time a cell is populated, and never changes after that. This can be done in Excel with VBA code. Can this be done in Smartsheet? Also, this cell should remain blank if the reference cell is blank.
Is anyone having issues with the Form Validation for Number only? When we have Number only selected, users are unable to key in a number - we have had to change the form to No Validation
HI, Seeking formula assist. I have to collect monthly stats that inlcude HH:MM:SS, however I am unable to average a full quarter in smartsheet becasue this format, HH:MM:SS is deemed text. 1- What is the formula needed in the helper column to convert HH:MM:SS shown in column labeled JAN into seconds in the helper column 2-…