Can anybody suggest a way to do this. I have it working in excel, I can't seem to get it working.
I have this excel formula that works.
=IF(AND(A2="OT", B2="UNDER"), "LOW",
IF(AND(A2="OT", B2="OVER"), "MEDIUM",
IF(AND(A2="LATE", B2="UNDER"), "MEDIUM",
IF(AND(A2="LATE", B2="OVER"), "HIGH", "")
)
)
)
I want to compare the status and budget columns and display the risk.
Thanks for any help.