Exact Match

cotech_10

Board Regular
Joined
Sep 11, 2010
Messages
135
Office Version
  1. 2016
Platform
  1. Windows
Hi All,


I am trying to construct a formula that will allow me to compare two or more cells of data against any given range of secondary data that have the exact
Data Sequence.



1700174020256.png



The table "Data Range 1" contains the set of criteria data, in this example
there are (4) Configurations to be analysed:

Config: 1 ; Config: 2 ; Config: 3 ; Config 4

The table "Data Range 2" contains the range of data to
be used against the criteria data.


The Table "Output" contains the results of the analysis of the (3) Configurations


In this example Config 1 has a count of "4". There are (4) instances in Table 2 where
there is an EXACT match with the same sequence patetrn of "A and H"

The same applies to Config 2,3 & 4

Config 2 has a count of 0 as there are no matches
Config 3 has a count of 2 as there 2 instances where
the sequence pattern of B,C,A,A,A exactly matches.
Config 4 also has a count of 2 as there 2 instances where
the sequence pattern of F,G,A,A,A exactly matches.



Cheers
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
These would be some formulas to find the configurations:

Dante Amor
ABCDEFGHIJKLMNOPQ
1
2
3Config 1AConfig 2BConfig 3BConfig 4F
4HCCG
5AA
6AA
7AA
8
9
10
11
12ABDFAHAAHABBCDFF
13HCEGHAHHHACCBEGG
14AAAAA
15ABAAA
16ABAAA
17
18
19
20
21
22
23Count
24Config 14
25Config 20
26Config 32
27Config 42
Hoja1
Cell Formulas
RangeFormula
H24H24=SUMPRODUCT(($B$12:$Q$12=C$3)*($B$13:$Q$13=C$4)*($B$14:$Q$14=C$5)*($B$15:$Q$15=C$6)*($B$16:$Q$16=C$7))
H25H25=SUMPRODUCT(($B$12:$Q$12=F$3)*($B$13:$Q$13=F$4)*($B$14:$Q$14=F$5)*($B$15:$Q$15=F$6)*($B$16:$Q$16=F$7))
H26H26=SUMPRODUCT(($B$12:$Q$12=I$3)*($B$13:$Q$13=I$4)*($B$14:$Q$14=I$5)*($B$15:$Q$15=I$6)*($B$16:$Q$16=I$7))
H27H27=SUMPRODUCT(($B$12:$Q$12=L$3)*($B$13:$Q$13=L$4)*($B$14:$Q$14=L$5)*($B$15:$Q$15=L$6)*($B$16:$Q$16=L$7))
 
Upvote 0
Hi DanteAmor,

Thak you for your response, much appreciated. I have copied the formulas into my spreadsheet and so far it seems
to be working the way I designed it to do.. :)

Will confirm with a bit more testing on additional Data .!!!!! (y)




Cheers
 
Upvote 0
Hi DanteAmor,

I did additional testing and the solution you have provided works well...

Thanking you once again

Cheers
 
Upvote 0
COUNTIFS would be another option

23 11 20.xlsm
BCDEFGHIJKLMNOPQ
3Config 1AConfig 2BConfig 3BConfig 4F
4HCCG
5AA
6AA
7AA
8
11
12ABDFAHAAHABBCDFF
13HCEGHAHHHACCBEGG
14AAAAA
15ABAAA
16ABAAA
17
23Count
24Config 14
25Config 20
26Config 32
27Config 42
COUNTIFS
Cell Formulas
RangeFormula
H24H24=COUNTIFS(B12:Q12,T(C3),B13:Q13,T(C4),B14:Q14,T(C5),B15:Q15,T(C6),B16:Q16,T(C7))
H25H25=COUNTIFS(B12:Q12,T(F3),B13:Q13,T(F4),B14:Q14,T(F5),B15:Q15,T(F6),B16:Q16,T(F7))
H26H26=COUNTIFS(B12:Q12,T(I3),B13:Q13,T(I4),B14:Q14,T(I5),B15:Q15,T(I6),B16:Q16,T(I7))
H27H27=COUNTIFS(B12:Q12,T(L3),B13:Q13,T(L4),B14:Q14,T(L5),B15:Q15,T(L6),B16:Q16,T(L7))
 
Upvote 0
Hi Peter,

Thank you for your contribution as well, much appreciated.

I have tried the solution you have provided I could not get it to work initially but when I removed the references of the letter "T" which precedes
the Range Criteria variables it works.

Cheers
 
Upvote 0
I have tried the solution you have provided I could not get it to work initially but when I removed the references of the letter "T" which precedes
the Range Criteria variables it works.
Sounds like there might possibly be something in some of the cells that we cannot see from your image. All the more reason to use XL2BB if possible next time. ;)

Anyway, glad you have it working now. (y)
 
Upvote 0

Forum statistics

Threads
1,215,078
Messages
6,122,997
Members
449,093
Latest member
masterms

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