Find related items based on multiple criteria > index+match multiple criteria or somthing else?

lvanderpol

New Member
Joined
Oct 14, 2019
Messages
1
Hi all,

This is a challenge, at least for me. What I'm trying to achieve is the following: I've a big list of items with several specs. I want to project the matching items (with the same specs) in columns after the item to match.

Simplified example of the data:

[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Item[/TD]
[TD]Spec 1[/TD]
[TD]Spec 2[/TD]
[TD]Spec 3[/TD]
[TD]Spec 4[/TD]
[/TR]
[TR]
[TD]car[/TD]
[TD]10[/TD]
[TD]20[/TD]
[TD]ABC[/TD]
[TD]DEF[/TD]
[/TR]
[TR]
[TD]bal[/TD]
[TD]10[/TD]
[TD]30[/TD]
[TD]ABC[/TD]
[TD]GHI[/TD]
[/TR]
[TR]
[TD]bike[/TD]
[TD]10[/TD]
[TD]20[/TD]
[TD]ABC[/TD]
[TD]DEF[/TD]
[/TR]
[TR]
[TD]house[/TD]
[TD]20[/TD]
[TD]30[/TD]
[TD]JKL[/TD]
[TD]MNO[/TD]
[/TR]
[TR]
[TD]table[/TD]
[TD]10[/TD]
[TD]30[/TD]
[TD]ABC[/TD]
[TD]GHI[/TD]
[/TR]
[TR]
[TD]motor[/TD]
[TD]10[/TD]
[TD]20[/TD]
[TD]ABC[/TD]
[TD]DEF[/TD]
[/TR]
</tbody>[/TABLE]







Result wished for:

[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Item[/TD]
[TD]Related 1[/TD]
[TD]Related 2[/TD]
[TD]Related 3[/TD]
[TD]Related 4[/TD]
[/TR]
[TR]
[TD]car[/TD]
[TD]bike[/TD]
[TD]motor[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]bal[/TD]
[TD]table[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]bike[/TD]
[TD]car[/TD]
[TD]motor[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]house[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]table[/TD]
[TD]bal[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]motor[/TD]
[TD]car[/TD]
[TD]bike[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]







Is this possible at all? I tried and combined several index matches found on the forum, but non of them worked for this scenario. I really hope someone has a working solution, as I have thousands of rows and a couple thousand combinations I guess.

Many thanks in advance!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
You could ensure your specifications in a given column had the same character length then concatenate all columns with dashes into a single column. Index match with the combined column would show matches.
Another method would be using a filter to show only rows where the all of the filtered columns matched the inputs.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,886
Messages
6,175,190
Members
452,616
Latest member
intern444

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