Sorry to see that this has gone unanswered for so long, @Jessica_Pena. :frowning: Setting this up only takes a couple of fields. First is one I’m calling {Diff}
, which calculates the difference between the {Expires}
date and today:
IF(Expires, DATETIME_DIFF(TODAY(), Expires, "days"))
The other is {Status}
, which contains the following formula:
IF(Expires, IF(Diff > 90, "Lapsed", IF(Diff >= 0, "Expired", IF(Diff > -16, "About to Expire", IF(Diff > -31, "Time to Renew", "Active")))))