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!
Hi there, I've created a sheet to where my team is tracking information received. In one column, we are logging the date and time information came in (ie: November 21, 2025 8:30 AM). I would like to add a checkbox column, with a formula specifying that the box be checked if the logged time is AFTER 8:30 AM, and left…
I have a column named Territory, where I am trying to write a formula to populate it when names are chosen from an adjacent drop-down list column called Employee Attendee. If more than one name is selected from the Employee column, I would like their respective territories to populate in the Territory field, separated by a…
I have a list of properties that I'm keeping track of. I have each building divided into suites (children) and each suite has a cell with its square footage. The total square footage rolls up to the building name. I also have a drop down column that shows if the suite is occupied or vacant. I need a to calculate the…