Hi there,
I have the following columns in use:
Plan Expiry date (Date column)
Date of Event (Date Column)
Status of Plan (Text Column with Formula)
I have used the following formula in the 'Status of Plan' column to let me know if a plan had expired when an event occurred.
=IF(ISDATE([Plan Expiry Date]@row), [Date of Event]@row - [Plan Expiry Date]@row)
The formula is working fine and gives me a positive or negative number telling me how many days until a plan expires or how many days since it has expired.
What I want to do is return a word instead of the positive or negative numbers: eg If the number less than 0, I want it to return “Current" and If the number is greater than 0, I want it to return “Expired”.
I tried nesting an If(and but was not successful.
Thanks in advance for your help.