Hi,
I am trying to make my sheet highlight rows using the Yes, Hold, NO RAG symbols when dates in specific columns are in the past or the row has not been approved. So far I have the below formula but its coming up as unparseable. Can anyone help? I cant see where I'm going wrong. If all dates are in the future it can be marked as Yes.
=IF(OR[Employers Liability Expiry Date]@row = <=TODAY(), “NO”,
IF(OR[Public Liability Expiry Date]@row = <=TODAY(), “NO”,
IF(OR[Product Liability Expiry Date]@row = <=TODAY(), “NO”,
IF(OR[Professional Indemnity Expiry Date]@row = <=TODAY(), “NO”,
IF(OR[Expiry Date 1]@row = <=TODAY(), “HOLD”,
IF(OR[Expiry Date 2]@row = <=TODAY(), “HOLD”,
IF(OR[Expiry Date 3]@row = <=TODAY(), “HOLD”,
IF(OR[Expiry Date 4]@row = <=TODAY(), “HOLD”,
IF(OR[Expiry Date 5]@row = <=TODAY(), “HOLD”,
IF(OR[Aoife Brennan Approval]@row = “Submitted”, “Hold”,
IF(OR[Aoife Brennan Approval]@row = “Declined”, “No”, ”Yes”)))))))))))