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, I have this formula below but its picking up everything that contains small fixes. We have small fixes, small fixes delivered and small fixes closed but I would only like to find results that are small fixes only. Can you help? Here is the formula I have =COUNTIFS({TL}, FIND(Metric@row , @cell ) > 0, {IS},…
I have attempted, several times, to follow the exact formula provided on AI so that I can assign new rows to random users. The AI formula showed: =IFERROR(INDEX({Team Sheet Names}, MATCH(MOD([Row ID]@row , MAX({Team Sheet Order})) + 1, {Team Sheet Order}, 0))) Following the directions and making the sheet reference, I…
Hello there, looking for some feedback. I currently have this formula to identify FYQ. My FY goes from October-Sept. =IF(ISDATE([Referral Date]@row ) = false, "", IF(AND(YEAR([Referral Date]@row ) >= 2024, YEAR([Referral Date]@row ) <= 2025), IF(OR(MONTH([Referral Date]@row ) = 11, MONTH([Referral Date]@row ) = 12,…