Xlookup with multiple lookup values to match with multiple lookup arrays

ExcelNewbie2020

Active Member
Joined
Dec 3, 2020
Messages
289
Office Version
  1. 365
Platform
  1. Windows
Sirs,

Would it be possible to use xlookup to match multiple lookup values from multiple lookup arrays?

For example
Sheet 1, i have column A&Eas lookup value

Sheet 2 there is column C&D as my lookup array and column A as the return value..

Well, a possible solution would be to concatenate the column C&D of sheet 2 as helper column.. but im seeking solution that does not need a helper column..

Thanks
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
You might be able to use index with multiple match. See the example in the like Here. If not please proved us with an example and post your excel using Xl2bb
 
Upvote 0
You might be able to use index with multiple match. See the example in the like Here. If not please proved us with an example and post your excel using Xl2bbthank you..

You might be able to use index with multiple match. See the example in the like Here. If not please proved us with an example and post your excel using Xl2bb
thank you very much..can you please resend the link..thanka
 
Upvote 0
It would help if you could post a small sample, but maybe one of these links will help. You might also want to look at the FILTER function.

 
Upvote 0
In case it helps:

=XLOOKUP( lookup_value, lookup_array, return_array)

Sheet1 (LookupUp Value)

Book2
ABCDEFG
1FruitCol2Col3Col4ColourOption 1 ConcatenationOption 2 Multiplication
2PearRedP01P01
3
Sheet1
Cell Formulas
RangeFormula
F2F2=XLOOKUP(A2 & E2, Sheet2!$C$2:$C$10 & Sheet2!$D$2:$D$10, Sheet2!$A$2:$A$10)
G2G2=XLOOKUP(1, (Sheet2!$C$2:$C$10 = A2) * (Sheet2!$D$2:$D$10 = E2), Sheet2!$A$2:$A$10)


Sheet2 (Lookup Array)

Book2
ABCD
1CodeCol2FruitColour
2A01AppleRed
3A02AppleGreen
4A03AppleYellow
5P01PearRed
6P02PearGreen
7
8
9
10
Sheet2
 
Upvote 0

Forum statistics

Threads
1,214,588
Messages
6,120,412
Members
448,960
Latest member
AKSMITH

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