Hi,
I have a sheet for an event we are running and I want to flag any row that has been modified in the last 72 hours (3 days).
Right now I have a flag column and a hidden modified date column.
Any help with the formula please?
Thank you!
Jared
Hi Jared,
Try something like this.
=IF(Modified@row >= TODAY(-3); 1)
The same version but with the below changes for your and others convenience.
=IF(Modified@row >= TODAY(-3), 1)
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Hi Andree,
Thank you for the reply, the formula is giving me an error of #CIRCULAR REFERENCE
I'm in US, but tried both semicolon and comma but same error on both.
Any ideas?
The column is actually named "last modify" but when i change "Modifed" in the formula to [Last Modify] i then get an #UNPARSABLE error.
Got it! Your formula was correct, I had a typo!
Thank you so much!
Excellent!
Happy to help!
Hi all, and thanks in advance! I wanted to know if there was any way to create "padding" in Smartsheet. Basically I have account numbers, and a handful are still 2-digit, so they appear as TDL-17, TDL-67, etc. Most of the accounts are 3-digit numbers like TDL-180. I want something that will recognize whether it is 2 or 3…
I'm wondering if anyone has worked out a dynamic formula to return the date of the 'next' Thursday of the month. I have a worksheet where I need to send out a reminder to a contacts in a contact column in the worksheet each Thursday of the current month if a criteria has not been met. When criteria has been met, then…
Hello, I have the formula to check a box for line items with the current month. =IF(AND(YEAR(Date@row ) = YEAR(TODAY()), MONTH(Date@row ) = MONTH(TODAY())), 1, 0) Trying to set up a report for all items with the previous month (i.e. 1 month prior to current). How can I modify to check the box?