Valid Matching Outcomes

cotech_10

Board Regular
Joined
Sep 11, 2010
Messages
135
Office Version
  1. 2016
Platform
  1. Windows
I would like to request the following task possibly to be done using excel formulas:

I have 7 possible numbers in Table 1 and would like to do a comparison analysis
with the numbers in Table 2. As per the image below:

1704153866239.png




In Table 2 there are 12 positions I would like to perform alternate analysis
based on Positions.

Step 1:

I would like to compare Positions 1,3,5,7,9,11 with all of the number values in Table 1
and count the number of match occurrences with those numbers.

For eg: From Table 2 the following Position Number values are:

Position 1=200
Position 3=330
Position 5=440
Position 7=520
Position 9=620
Position 11=730

According to Match Rule for these Positions we are only concerned with the outcomes where there is a valid
match outcome.

Position 1=200 MATCHES with one of the numbers in TABLE 1 which is a valid outcome
Position 3=330 does not match with any of the numbers in TABLE 1 which is not a valid outcome
Position 5=440 does not match with any of the numbers in TABLE 1 which is not a valid outcome
Position 7=520 does not match with any of the numbers in TABLE 1 which is not a valid outcome
Position 9=620 does not match with any of the numbers in TABLE 1 which is not a valid outcome
Position 11=730 does not match with any of the numbers in TABLE 1 which is not a valid outcome

The only match value is Position 1

Table 1 = 200 Table 2 = 200

Therefore the match count = 1

STEP 2:

The second part of the calculation and to be included in the Total Count is as follows:

I would like to compare Positions 2,4,6,8,10,12 with all of the number values in Table 1
and count the number of NON-MATCH occurrences with those numbers.

For eg: From Table 2 the following Position Number values are:


Position 2=240
Position 4=350
Position 6=450
Position 8=550
Position 10=650
Position 12=800


According to Match Rule we are only concerned with the outcomes where there is a valid
NON-MATCH outcome.


For eg:

Position 2=240 does not match with any of the numbers in TABLE 1 which is a valid outcome
Position 4=350 does not match with any of the numbers in TABLE 1 which is a valid outcome
Position 6=450 does not match with any of the numbers in TABLE 1 which is a valid outcome
Position 8=550 does not match with any of the numbers in TABLE 1 which is a valid outcome
Position 10=650 does not match with any of the numbers in TABLE 1 which is a valid outcome
Position 12=800 does MATCH with one of the numbers in TABLE 1 which is a non-valid outcome


The Matching Outcomes are Positions 2,4,6,8 & 10 and NOT Position 12 as the rule
specifies that non-matching conditions are to be met.


The number of outcomes that satisfy this rule = 5


The Totals for these (2) levels of analysis is 6.

1. STEP 1 = 1
STEP 2 = 5

Total = 6 which is the value placed in the OUTPUT Table


I look forward in hearing back from someone soon



Regards
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Like this?

24 01 02.xlsm
BCDEFGHIJKLMNO
1
2200300400500600700800
3
4
5Position 1Position 2Position 3Position 4Position 5Position 6Position 7Position 8Position 9Position 10Position 11Position 12Count
62002403303504404505205506206507308006
71992002993003994004995005996006997000
820029930039940049950059960069970079912
Count
Cell Formulas
RangeFormula
O6:O8O6=SUMPRODUCT(ISODD(RIGHT(B$5:M$5,2)+0)*ISNUMBER(MATCH(B6:M6,B$2:H$2,0)))+SUMPRODUCT(ISEVEN(RIGHT(B$5:M$5,2)+0)*ISNA(MATCH(B6:M6,B$2:H$2,0)))
 
Upvote 0
24 01 02.xlsm
BCDEFGHIJKLMNO
1
2200300400500600700800
3
4
5Position 1Position 2Position 3Position 4Position 5Position 6Position 7Position 8Position 9Position 10Position 11Position 12Count
62002403303504404505205506206507308006
71992002993003994004995005996006997000
820029930039940049950059960069970079912
Count
Cell Formulas
RangeFormula
O6:O8O6=SUMPRODUCT(ISODD(RIGHT(B$5:M$5,2)+0)*ISNUMBER(MATCH(B6:M6,B$2:H$2,0)))+SUMPRODUCT(ISEVEN(RIGHT(B$5:M$5,2)+0)*ISNA(MATCH(B6:M6,B$2:H$2,0)))
Perfect.... Thanks Peter..!!!!! :)
 
Upvote 0
You're welcome. Thanks for the follow-up. :)
 
Upvote 0
Another option:

Excel Formula:
=SUM((B6:M6*{1,0,1,0,1,0,1,0,1,0,1,0}=TRANSPOSE($B$2:$H$2))*1)+6-SUM((B6:M6*{0,1,0,1,0,1,0,1,0,1,0,1}=TRANSPOSE($B$2:$H$2))*1)
 
Upvote 0
Another option:

Excel Formula:
=SUM((B6:M6*{1,0,1,0,1,0,1,0,1,0,1,0}=TRANSPOSE($B$2:$H$2))*1)+6-SUM((B6:M6*{0,1,0,1,0,1,0,1,0,1,0,1}=TRANSPOSE($B$2:$H$2))*1)
Hi Felixstraube,

Thank you for the solution you have provided, always appreciate input from other members.
I used the solution you have provided and I get a return cell error message in the cell where
the formula was copied to.

"#VALUE!"

I am not sure if it is a typing issue or cell referencing.



Cheers
 
Upvote 0
It is an array formula so for it to work you have to enter it pressing Ctrl+Shift+Enter.
 
Upvote 0
Or you can try this formula. With this one you can just hit enter (no Ctrl+Shift+Enter required):

Excel Formula:
=SUMPRODUCT((B6:M6*{1,0,1,0,1,0,1,0,1,0,1,0}=TRANSPOSE($B$2:$H$2))*1)+6-SUMPRODUCT((B6:M6*{0,1,0,1,0,1,0,1,0,1,0,1}=TRANSPOSE($B$2:$H$2))*1)
 
Upvote 0
Or you can try this formula. With this one you can just hit enter (no Ctrl+Shift+Enter required):

Excel Formula:
=SUMPRODUCT((B6:M6*{1,0,1,0,1,0,1,0,1,0,1,0}=TRANSPOSE($B$2:$H$2))*1)+6-SUMPRODUCT((B6:M6*{0,1,0,1,0,1,0,1,0,1,0,1}=TRANSPOSE($B$2:$H$2))*1)
Hi..

Thanks for both responses.. I tried the original array formula solution and it works with Ctrl+Shift+Enter

The 2nd solution seems to be an array formula as well as to execute I needed to enter the Ctrl+Shift+Enter


Cheers
 
Upvote 0

Forum statistics

Threads
1,215,072
Messages
6,122,966
Members
449,094
Latest member
Anshu121

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