I am using the below formula to change the Status Column from "Yes, No, Hold" depending on the various license status'. The part of the formula that is not working is " IF(AND([GL Status]@row = "Expired", [WC Status]@row = "Expired", [Lic. Status]@row = "Expired"), "No" " i have a couple rows that have expired status' but it is not changing the Status Column to "No"
=IF(OR([GL Status]@row = "Requested", [WC Status]@row = "Requested", [W-9]@row = 0), "Hold", IF(AND([GL Status]@row = "Active", [WC Status]@row = "Active", [Lic. Status]@row = "Active"), "Yes", IF(AND([GL Status]@row = "Expired", [WC Status]@row = "Expired", [Lic. Status]@row = "Expired"), "No")))