Conditional Formatting Formula Help

mpeterson1227

New Member
Joined
Dec 21, 2016
Messages
6
****** id="cke_pastebin" style="position: absolute; top: 0px; width: 1px; height: 1px; overflow: hidden; left: -1000px;">
0down votefavorite
I'm trying to create a formula for conditional formatting that will identify two words and create an output of a word.
See example below:
SG0V9.jpg

Right now I'm having to manually put in the Risk Type. I want it to output the risk type based on the likelihood and impact.
ITRQL.jpg




<tbody style="margin: 0px; padding: 0px; border: 0px;">
</tbody>
</body>

down votefavorite
I'm trying to create a formula for conditional formatting that will identify two words and create an output of a word.
See example below:
SG0V9.jpg

Right now I'm having to manually put in the Risk Type. I want it to output the risk type based on the likelihood and impact.
ITRQL.jpg




<tbody style="margin: 0px; padding: 0px; border: 0px;">
</tbody>



Please help and thank you in advance!
 

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).
Hi, welcome to the board :)

Your post came through a bit weird, but based on this part...
I'm trying to create a formula for conditional formatting that will identify two words and create an output of a word.

Conditional Formatting is only used to change the appearance of a cell, it cannot add/change/put anything into a cell.

I cannot see your images, but can you explain what you have and what you want?
 
Upvote 0
Oh wow, I'm sorry. Thanks for the welcome!

So I'm creating a risk register but it is very basic. I have a Likelihood column, an Impact column and a Risk column. I wanted to find a formula to where it would input the type of risk based on likelihood and impact.

Likelihood + Impact (without numbers) = Risk. I'm having difficulties because it's using text and not numbers. Numbers just makes it too complicated.

Can you see this picture?

search
 
Upvote 0
Still cannot see images (I mostly cannot), but based on your description, see if this this is what you want...

A​
B​
C​
D​
E​
F​
2​
LikelihoodImpactRiskLikelihoodLow
3​
lownone
1​
Impactsmall
4​
Mediumnone
2​
Risk
4​
5​
Highnone
3​
6​
lowsmall
4​
7​
Mediumsmall
5​
8​
Highsmall
6​
F2 and F3 are your criteria
F4=INDEX($C$3:$C$8,MATCH(F2&" "&F3,INDEX($A$3:$A$8&" "&$B$3:$B$8,0),0))
 
Upvote 0
Hi

Try this

=IF(AND(A1="Very Likely",B1="minor"),"Medium",
IF(AND(A1="Very Likely",B1="Moderate"),"High",
IF(AND(A1="Very Likely",B1="Major"),"Extreme",
IF(AND(A1="Likely",B1="minor"),"Low",
IF(AND(A1="Likely",B1="Moderate"),"Medium",
IF(AND(A1="Likely",B1="Major"),"High",
IF(AND(A1="Unlikely",B1="minor"),"Low",
IF(AND(A1="Unlikely",B1="Moderate"),"Low",
IF(AND(A1="Unlikely",B1="Major"),"Medium", "")))))))))

I am able to response in real time to you until its solve!
 
Upvote 0
Very LikelyAcceptable Risk Medium 2Unacceptable Risk High 3Unacceptable Risk Extreme 5
LikelyAcceptable Risk Low 1Acceptable Risk Medium 2Unacceptable Risk High 3
UnlikelyAcceptable Risk Low 1Acceptable Risk Low 1Acceptable Risk Medium 2
MinorModerateMajor

<colgroup><col span="4"></colgroup><tbody>
</tbody>
 
Upvote 0
Wow, I think that worked!!!!! I just adjusted the cell #s and it changed. Then I was able to put a conditional formatting to colors based on the text in that column. Thank you soo soo much!!

Thank you FDibbins and Guru008
 
Upvote 0
Not sure what that sample is supposed to represent, you said you had 3 columns - Likelihood, Impact and Risk (where you wanted the answer)?

Did you see my suggested method in post #5?
 
Upvote 0
Yes I did but I was trying to stay with the same format that I had and I didn't want to utilize numbers.

This issues has been solved by using the formula listed above.


Thanks for your help!!
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,429
Members
448,961
Latest member
nzskater

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