Vlookup on 3 or more table arrays

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
EG how can i use Vlookup to find NAME from following 3 tables

[TABLE="width: 512"]
<colgroup><col width="64" span="8" style="width:48pt"> </colgroup><tbody>[TR]
[TD="width: 64"]ITEM[/TD]
[TD="width: 64"]NAME[/TD]
[TD="width: 64"][/TD]
[TD="width: 64"]ITEM[/TD]
[TD="width: 64"]NAME[/TD]
[TD="width: 64"][/TD]
[TD="width: 64"]ITEM[/TD]
[TD="width: 64"]NAME[/TD]
[/TR]
[TR]
[TD]itemA1[/TD]
[TD]A1[/TD]
[TD][/TD]
[TD]itemB1[/TD]
[TD]B1[/TD]
[TD][/TD]
[TD]itemC1[/TD]
[TD]C1[/TD]
[/TR]
[TR]
[TD]itemA2[/TD]
[TD]A2[/TD]
[TD][/TD]
[TD]itemB2[/TD]
[TD]B2[/TD]
[TD][/TD]
[TD]itemC2[/TD]
[TD]C2[/TD]
[/TR]
[TR]
[TD]itemA3[/TD]
[TD]A3[/TD]
[TD][/TD]
[TD]itemB3[/TD]
[TD]B3[/TD]
[TD][/TD]
[TD]itemC3[/TD]
[TD]C3[/TD]
[/TR]
[TR]
[TD]itemA4[/TD]
[TD]A4[/TD]
[TD][/TD]
[TD]itemB4[/TD]
[TD]B4[/TD]
[TD][/TD]
[TD]itemC4[/TD]
[TD]C4[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]ITEM[/TD]
[TD]itemB1[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]NAME[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
Assume are your data tables are A1:B5, d1:e5, and g1:h5. Assume headers are in row 1. Therefore your actual data ranges are A2:B5, d2:e5, and g2:h5 item is in columns A, D, and G. Name is in columns B,E, and H.

A7: item
A8: Formula[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64"] =IFERROR(VLOOKUP(a7,a2:b5,2,0),IFERROR(VLOOKUP(a7,d2:e5,2,0),IFERROR(VLOOKUP(a7,g2:h5,2,0),"")))[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
If the return is supposed to be a text value, try:
Rich (BB code):
=LOOKUP(REPT("z".255),CHOOSE({1,2,3,4},"",VLOOKUP("ItemB1",A:B,2,0),
  VLOOKUP("ItemB1",C:D,2,0),VLOOKUP("ItemB1",E:F,2,0)))
 
Upvote 0

Forum statistics

Threads
1,222,229
Messages
6,164,734
Members
451,911
Latest member
HMF009

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