I am trying to create a formula that will look at a date and determine if today's date is greater than the date in a particular field it will bring back the word "expired" but if all the dates are greater than today's date it should be left blank;
The hiccup I am encountering is when the field is blank.
I have tried many formulas and the following is working; however if there is a blank field it will give me a false positive.
=IF(TODAY() > [General Liability Expiration]86, "Expired", IF(TODAY() > [Automobile Liability Expiration]86, "Expired", IF(TODAY() > [Umbrella Liability Expiration]86, "Expired", IF(TODAY() > [Workers Compensation Expiration]86, "Expired", IF(TODAY() > [Professional Liability Expiration]86, "Expired", " ")))))
So if General Liability Expiration is blank and all the other dates are in the future I still get "expired" when I should be getting a blank.
Any assistance would be greatly appreciated.