Complex IF Statements

Zmaxx

New Member
Joined
Aug 9, 2017
Messages
2
Hi Guys

I am trying and struggling to create a nested IF statement for risk assessment that works this way:
The risk factor is calculated by multiplying the consequence(ranges from 1-7) and probability(ranges from 1-9). Based on the product of the two the values can be categorised as very low, low....high. Now the part where I'm struggling is:
#Each consequence range (1-7) has it's own criteria for whether a value is considered very low, low etc.
#I want to create an IF statement that will first check the value of consequence, then based on that value it will check the value of the product (consequence x probability) and return very low, low, torable etc
For example:
Consequence = 1, Probability = 4
Risk Score = 1×4 = 4
Risk Category = Low

Consequence = 2, Probability = 6
Risk Score = 2x6 = 12
Risk Category = Tolerable

What is the best way to approach this? Thank You
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
firstly, you need to define the ranges for the very low, low & high categories.

secondly, let say score 12 = tolerable, does it matter if it's resulted from 2x6 or 3x4 etc?
 
Upvote 0
I managed to do it by creating a grid table with the labels and used a combination of VLOOKUP and MATCH to find the point of intersection for each possible combination. Thank You
 
Upvote 0

Forum statistics

Threads
1,214,789
Messages
6,121,593
Members
449,038
Latest member
Arbind kumar

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