Hello
I'm trying to work out a formula that will do the following:
If E8 = "Yes" and F8 is greater than 14 days old from todays date, write "Older than 14 days" in J8.
I can then copy this formula down through E8:F1000, as there will be upto 1000 rows to perform the validation on.
This works for checking just the date, but doesn't include the Yes check as well. I've tried
and various other ways, but I can't seem to make this work.
Any help greatly appreciated, thanks.
I'm trying to work out a formula that will do the following:
If E8 = "Yes" and F8 is greater than 14 days old from todays date, write "Older than 14 days" in J8.
I can then copy this formula down through E8:F1000, as there will be upto 1000 rows to perform the validation on.
Code:
=IF((TODAY()-$F13)>14,"Over 14 Days","")
Code:
=IF(E13="Yes"&(F13>=TODAY()-14),"T","F")
Any help greatly appreciated, thanks.