"MATCH" or "IF/OR"

geniechua

New Member
Joined
Jun 6, 2012
Messages
22
Hi,

I have to find a solution which I'm not entirely sure if it can be done by excel.

I have a table with 11 conditions, and depending on whether the conditions are met, there will be 4 outcomes.

ABC
1Condition 1 TrueResult A
2Condition 2FalseResult A
3Condition 3FalseResult B
4Condition 4TrueResult B
5Condition 5FalseResult B
6Condition 6FalseResult B
7Condition 7FalseResult B
8Condition 8TrueResult B
9Condition 9TrueResult B
10Condition 10TrueResult C
11Condition 11FalseResult D

<tbody>
</tbody>


Here's the restrictions to be imposed:

1. If either Condition 1 or Condition 2 is true, I want Result A. Whether any other conditions are true is irrelevant.
2. If any of Condition 3 to Condition 9 is true, I want Result B. This is regardless whether Condition 10 or Condition 11 is true
3. If only Condition 10 or Condition 11 is true, I want Result C and Result D respectively.
 
how about?

=IF(AND(B10,COUNTIF(B1:B11,TRUE)=1),"Result C",IF(COUNTIF(B3:B9,TRUE)>0,"Result B"))
 
Upvote 0

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

Forum statistics

Threads
1,214,913
Messages
6,122,207
Members
449,074
Latest member
cancansova

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