Risk Log - If statement???

Elmani

New Member
Joined
May 8, 2005
Messages
16
Hi,

I have created a risk log for which I need a formula to help calculate the overall risk rating.

In Column A, I am listing the Impact (Low, Medium, High) and in Column B, I am listing the likelihood (low, Medium, High).

I need a formula in column see that calculates the overall rating based on the first two columns.

I won't bother listing all of the possible ratings, but have listed a few as an example - if someone could give me the basic formula, I'm sure I can then add in all of the outcomes.



Impact Liklihood Overall Rating
Low Low Low
Medium Low Low
High Low Medium


Thanks in advance....
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Elmani

One way would be to have a 'lookup table' like I have in columns E and F. Then the formula in C2 (copied down) is:
=VLOOKUP(A2&B2,$E$1:$F$10,2,0)
Mr Excel.xls
ABCDEF
1ImpactLikelihoodOverallImpact/LiklihoodOverall
2MediumMediumMediumLowLowLow
3HighLowMediumLowMediumLow
4LowHighMediumLowHighMedium
5MediumHighHighMediumLowLow
6LowMediumLowMediumMediumMedium
7MediumHighHigh
8HighLowMedium
9HighMediumHigh
10HighHighHigh
11
Risk Rating
 
Upvote 0
If I got the combination right, which is:

High Low Medium
High Medium Medium
High High High
Medium Low Low
Medium Medium Medium
Medium High Medium
Low Low Low
Low Medium Low
Low High Medium

you can use this formula:
=IF(A1="High",IF(B1="High","High","Medium"),IF(A1="Medium",IF(B1="Low","Low","Medium"),IF(B1="High","Medium","Low")))
 
Upvote 0

Forum statistics

Threads
1,214,942
Messages
6,122,366
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top