Hello,
I have a list of employee certifications where the certification name is in one column, the certification expiration date is in another and the status if this the 3rd. I have a column called NETDAYS where I calculate the number of dates in between today's date and the expiration date.
The formula I can currently using calculates whether a certification is:
Active (not expired and not expiring in within the next 30 days)
Expiriing!!! (expiring within the next thirty days)
Pending (expiration date is blank and we're pursuing getting the employee certified)
I want to add a 4th status called "N/A" by using a bogus date in the expiration date column but keeping getting unparseable.
Here's the current formula -
=IF(ISBLANK([Expiration Date]41), "Pending", IF(NETDAYS41 < 0, "Expired", IF(NETDAYS41 < 31, "Expiring in the next 30 days", "Active")))
Can anyone help me?