Does anyone have a RAID log formula they can share to calculate the overall and individual project health of a project based on the amount and priority level of Risks and Issues?
Currently, I have formulas that evaluate the status of issues and risks in our RAID log which return color codes (Red, Yellow, Green) in a project dashboard based on the following conditions:
Overall Project Health:
=IF(OR(Scope@row = "R", Schedule@row = "R", Cost@row = "R", Issues@row = "R", Risks@row = "R"), "R", IF(Value27 >= 2, "Y", "G"))
Issues:
=IF(COUNTIFS({RAID Log | RAID Type}, ="Issue", {RAID Log | Status}, <>"Closed", {RAID Log | Priority}, ="High") > 0, "R", IF(COUNTIFS({RAID Log | RAID Type}, ="Issue", {RAID Log | Priority}, ="Medium") > 2, "Y", "G"))
Risks:
=IF(COUNTIFS({RAID Log | RAID Type}, ="Risk", {RAID Log | Status}, <>"Closed", {RAID Log | Risk Impact}, ="High") > 0, "R", IF(COUNTIFS({RAID Log | RAID Type}, ="Risk", {RAID Log | Risk Impact}, ="Medium") > 2, "Y", "G"))