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 am trying to import (just blank rows, with 18 columns) from Excel into an existing sheet, so I don't have to recreate the 18 columns into my tracker. But I get a "Failed to Import" error. HELP!
I have three columns. One with a date 7/1/2027 in date format. One with a number representing the number of months I wish to subtract from the date column. Third column is a date column with the following equation: =DATE(YEAR([Column4]@row) - INT((MONTH([Column4]@row) - VALUE(Factor1)) / 12), MOD(MONTH([Column4]@row) -…
Formula was flowing correctly, but some change seems to have partially broken the pull but I can't figure out what/how. "Project" column dropdown is linked to a Master sheet. Budget Owner column contains the below formula which should look for the cell value in the Project/Cost Center/IO column within the P+CC+IO column of…