Hello-
I’d like to create a formula that allows me to track expiration dates status (three possibilities):
- Due soon, but not within four weeks (blank value in table);
- Due within four weeks (“Yes”);
- Past due (“Late”)
I’ve been able to create this with the first two status items, but not the third (“Late”). Here’s what I have:
IF(
AND(
DATETIME_DIFF({Expiration}, NOW(), “days”) < 28,
DATETIME_DIFF({Expiration}, NOW(), “days”) > 0
), “Yes”
)
Thanks!
