Hi all,
I have a problem which I am unable to figure out. I have an input which shows different scenarios (E.g Scenario A, Scenario
and the respective probability of success (See example input below)
| Scenario A_Success | Scenario A_Fail | Scenario B_Success | Scenario B_Fail | Scenario C_Success | Scenario C_Fail |
| 0.99 | 0.01 | 0.94 | 0.06 | 0.12 | 0.88 |
I have to create an additional review column for each scenario such that: (See example output below)
- If probability of success or probability of failure >= 0.9, review = good
- If probability of success or probability of failure < 0.9, review = bad
| Scenario A_Success | Scenario A_Fail | Scenario A_Review | Scenario B_Success | Scenario B_Fail | Scenario B_Review | Scenario C_Success | Scenario C_Fail | Scenario C_Review |
| 0.99 | 0.01 | good | 0.94 | 0.06 | good | 0.12 | 0.88 | bad |
How do I go about doing this? I have approximately 50 scenarios! Is there a better way to do it instead of creating 1 formula per scenario?
Thank you for the help!