Sign in to join the conversation:
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!
I need a column formula that can add sequential, unique IDs to data like this coming in from a form: Task Type Task ID Manual M001 Automated Manual M002 Manual M003 Manual M004 Automated Manual M005 Task IDs that aren’t the manual type need sequential numbering within their type (i.e. A001, A002, etc). Here’s the kicker:…
I'm trying to display a sum of the column Total Funds Available when Status = Apps Open, and Value Score = 5. Here is the formula I have: =SUMIFS([Total Funds Available]:[Total Funds Available], Status:Status, ="Apps Open", [Value Score]:[Value Score], ="5") There are rows that meet these conditions and should display a…
Hi everyone. We have an upcoming project is very short, but very critical, and requires that we track not only the start and end dates, but also the start and end times. Currently our team has added two columns, start time & end time, and they would like to add a duration column that can track the planned duration in…