I'm getting stuck on this one. I have a working OR statement formula based on no information from two different columns. I want to add a third variable based on another column having a specific statement. I've tried this a few ways but, nothing has worked.
Working Original statement:
=IF(OR([ePRG Training]@row <> "", [Attestation Delivery]@row <> ""), "Completed", "Training Needed")
Non-working New Statement:
=IF(AND(OR([QISA Status]@row = "Signed QISA - Complete", [ePRG Training]@row <> "", [Attestation Delivery]@row <> ""), "Completed", "Training Needed", ))
Logic:
If Column1 = "X" and Column2 is not blank or Column3 is not blank then "Completed" else "Training Needed".
Also, would like to work in: If Column1 does not equal X then do nothing.