VlookupMatchMatch/IndexMatchMatch help

rugbytomc

New Member
Joined
Jul 25, 2013
Messages
13
Hi
I'm trying to look from one table to another, to see if a match is found (easy enough with vlookup) but i want to match on Code first, then on a specific requirement and that requirement could be found in any one of 11 columns in one row and i'm struggling to do this so any help much appreciated. Table 1 is the starting point and is populated. Table 2 left hand side is already populated also. Table 2 right hand side is where i want to look for cell B2 (Type aaaa for Code A111) in table 1 and see if it exists (which is does in cell B2)

Table 1

[TABLE="width: 500"]
<tbody>[TR]
[TD]Code[/TD]
[TD]Type 1[/TD]
[TD]Type 2[/TD]
[TD]Type 3[/TD]
[TD]Type 4[/TD]
[TD]Type 5[/TD]
[TD]Type 6[/TD]
[TD]Type 7[/TD]
[TD]Type 8[/TD]
[TD]Type 9[/TD]
[TD]Type 10[/TD]
[TD]Type 11[/TD]
[/TR]
[TR]
[TD]A111[/TD]
[TD]aaaa[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]A112[/TD]
[TD]aaaa[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]A113[/TD]
[TD]aaaa[/TD]
[TD]bbbb[/TD]
[TD][/TD]
[TD][/TD]
[TD]dddd[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]A114[/TD]
[TD]dddd[/TD]
[TD]aaaa[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]eeee[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]


Table 2

[TABLE="width: 500"]
<tbody>[TR]
[TD]Code[/TD]
[TD]Type 1 Requirement[/TD]
[TD]Type 2 Requirement[/TD]
[TD]Type 3 requirement[/TD]
[TD]blank[/TD]
[TD]Type 1 Available[/TD]
[TD]Type 2 Available[/TD]
[TD]Type 3 Available[/TD]
[/TR]
[TR]
[TD]A111[/TD]
[TD]aaaa[/TD]
[TD]bbbb[/TD]
[TD]cccc[/TD]
[TD][/TD]
[TD]Yes[/TD]
[TD]No[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]A112[/TD]
[TD]dddd[/TD]
[TD]eeee[/TD]
[TD]ffff[/TD]
[TD][/TD]
[TD]No[/TD]
[TD]No[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]A113[/TD]
[TD]dddd[/TD]
[TD]eeee[/TD]
[TD]ffff[/TD]
[TD][/TD]
[TD]Yes[/TD]
[TD]No[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]A114[/TD]
[TD]aaaa[/TD]
[TD]bbbb[/TD]
[TD]cccc[/TD]
[TD][/TD]
[TD]Yes[/TD]
[TD]No[/TD]
[TD]No[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
If ive read correctly try this. Put you table 1 in A1:L5. Table 2 in A8:H12. In F9 place this:

=IF(COUNTIF(INDEX($B$1:$L$5,MATCH($A9,$A$1:$A$5,0),0),B9),"Yes","No")

Copy across and down.
 
Upvote 0
Thanks Steve that's really helpful. Slight tweak - what if the "code" appears more than once in Table 1, is it possible for table 2 to search every line that the code appears to search for the criteria?
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,774
Members
452,353
Latest member
strainu

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