Hello Community,
I have a sheet where the primary column is a user name. Then, a status column with RYG. Then, alternating columns of checkboxes for a unique certification followed by a column with the expiration date of the certification.
I would like to set the status based on the following conditions:
Red = any certification is expired
Yellow = at least one certification is scheduled to expire within 30 days
Green = all certifications that are checked expire more then 30 days from now
My formula for the status column is...
=IF((ISDATE([Administrator]@row:[Application Architect Expiration]@row),MIN([Administrator]@row:[Total Certifications]@row) <= TODAY(-30), "Red", IF(MIN([Administrator]@row:[ Application Architect Expiration]@row) <= TODAY(30), "Yellow", "Green")))
Following is a screenshot of my sheet.
Thank you for your assistance.