SOLVED

Index Match problem

Copper Contributor

I am having a problem with what should be a simple solution.  In the example below, I am trying to create an Index Match formula to look for one value in a table and pull in the Catalog ID.  For example, if I look for PBC-1430, I need 2D4 to populate my cell:

Catalog IDCust A Item #sCust B Item #sCust C Item #sCust D Item #sCust E Item #sCust F Item #s
A105BLL05BAA10000A1000AFABAT2000 
0B104BLL04BAA2000B2000AFABATC2000 
C506B1L06B1A   PBC-1430
2D408D1LL08D1AA   PBC-1460

 

I originally tried using a vlookup, but that didn't work.  Any assistant would be much appreciated.

10 Replies

Hi @MeMacz1138 ,

 

That is like

=IFERROR(INDEX($A$2:$A$1000,MATCH(J4,$G$2:$G$1000,0)),"no such")

if the value you are looking for is in J4

@Sergei Baklan Thank you for responding so quickly!  Is there a way to do the lookup in all cells from B1 through G5?  Rather than only looking in Column G?  

@MeMacz1138 , it depends on what you'd like to do. If multiple criteria, like return value from A if in G we have some1 AND in C some2, etc. - that's one situation. If pull value not from column A but another one that will be third parameter INDEX. Similar to VLOOKUP when you have columns number as parameter.

 

What is your case exactly? Perhaps just small sample to explain.

@Sergei Baklan I figured an abbreviated spreadsheet would be easiest, which I have attached.  I have an inventory workbook that lists out all of the inventory we have on hand for finished products.  The inventory includes our own inventory, but also products that have been re-labeled for our customers, but in reality are one of our original catalog id numbers.  I basically want to be able to look up the customers item number in an array and then bring back the original catalog id that is associated with that customer's item number.  I've attached a shortened version.  I have been trying to put in a formula either to the right or left (highlighted in yellow).  It seems like it shouldn't be that complicated, but I have yet to figure out what I am doing wrong. 

@MeMacz1138 , the formula could be like

=IFERROR(
   INDEX('Original Catalog & Customers'!$B$6:$B$16,MATCH(1,INDEX(
   ($B16='Original Catalog & Customers'!$C$6:$C$16)+
   ($B16='Original Catalog & Customers'!$D$6:$D$16)+
   ($B16='Original Catalog & Customers'!$E$6:$E$16)+
   ($B16='Original Catalog & Customers'!$F$6:$F$16)+
   ($B16='Original Catalog & Customers'!$G$6:$G$16)+
   ($B16='Original Catalog & Customers'!$H$6:$H$16)+
   ($B16='Original Catalog & Customers'!$I$6:$I$16),
0),0)), "no such")

It is assumed the ID is not repeated in Custom Item columns, each ID could be only in one of columns. Formula is in the left column of the Inventory. You need adjust the range to real ones, but it'll be better to transform Customer Items into the Excel Table or use dynamic named ranges, but that's cosmetic.

A shorter variant of the formula in Inventory!A16 is this:
=IFERROR(INDEX('Original Catalog & Customers'!B$6:B$16,
SUMPRODUCT(ROW('Original Catalog & Customers'!C$6:I$16)*
('Original Catalog & Customers'!C$6:I$16=B16))-5),
"No such")
best response confirmed by MeMacz1138 (Copper Contributor)
Solution
To remedy the possible occurrence of duplicates, I suggest this formula in Inventory!A16:
=IFERROR(INDEX('Original Catalog & Customers'!B$6:B$16,
SUMPRODUCT(MAX(ROW('Original Catalog & Customers'!C$6:I$16)*
('Original Catalog & Customers'!C$6:I$16=B16)))-5),
"No such")
This formula worked!
All formulas worked and provided the same results - thank you so much!
Welcome!
1 best response

Accepted Solutions
best response confirmed by MeMacz1138 (Copper Contributor)
Solution
To remedy the possible occurrence of duplicates, I suggest this formula in Inventory!A16:
=IFERROR(INDEX('Original Catalog & Customers'!B$6:B$16,
SUMPRODUCT(MAX(ROW('Original Catalog & Customers'!C$6:I$16)*
('Original Catalog & Customers'!C$6:I$16=B16)))-5),
"No such")

View solution in original post