Vlookup on 3 or more table arrays

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
EG how can i use Vlookup to find NAME from following 3 tables

ITEMNAMEITEMNAMEITEMNAME
itemA1A1itemB1B1itemC1C1
itemA2A2itemB2B2itemC2C2
itemA3A3itemB3B3itemC3C3
itemA4A4itemB4B4itemC4C4
ITEMitemB1
NAME

<colgroup><col width="64" span="8" style="width:48pt"> </colgroup><tbody>
</tbody>
 
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
=IFERROR(VLOOKUP(a7,a2:b5,2,0),IFERROR(VLOOKUP(a7,d2:e5,2,0),IFERROR(VLOOKUP(a7,g2:h5,2,0),"")))

<tbody>
</tbody>
 
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,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

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