I have a sheet where I need to identify if a parent/child record is Active.
Expiration Date
Is in the past or "N/A"
Signed SpinCo Letter
Include entries of "Yes" or "N/A" and do not include "No" or Blank.
Contract Status
Include "Executed"
Here's what I have but I'm getting an UNPARSEABLE ERROR.
=IF(AND(OR([Signed SpinCo Letter]@row = "Yes", [Signed SpinCo Letter]@row = "N/A", NOT(ISBLANK([Signed SpinCo Letter]@row )), [Signed SpinCo Letter]@row <> "No"), OR(MAX(CHILDREN([Expiration Date]@row )) < TODAY(), MAX(CHILDREN([Expiration Date]@row )) = "N/A"), [Contract Status]@row = "Executed"), "Active", "")
There's obviously something I'm missing. :) Could someone please help? Please let me know if more details are needed. Thank you.