Please convert my XLOOKUP to an INDEX and MATCH

Ioweyouone

New Member
Joined
Aug 14, 2009
Messages
33
Office Version
  1. 365
Platform
  1. Windows
The XLOOKUP formula below works fine but my co-workers cannot use XLOOKUP. Can someone help me convert this to an INDEX and MATCH? My INDEX & MATCH thought process below does not work. Thanks

XLOOKUP(E8,nov,nov_qty,XLOOKUP(E8,dec,dec_qty,XLOOKUP(E8,jan,jan_qty,XLOOKUP(E8,feb,feb_qty))))
INDEX(nov_qty,MATCH(E8,nov,0)),INDEX(dec_qty,MATCH(E8,dec,0)),INDEX(jan_qty,MATCH(E8,jan,0)),INDEX(feb_qty,MATCH(E8,feb,0))

xlookup.jpg
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hi Dear,

Ideally, it is better to arrange the data set into a tabular form.

Nonetheless, please try the following formula
=IFERROR(INDEX(nov_qty,MATCH(E8,nov,0)),0)+IFERROR(INDEX(dec_qty,MATCH(E8,dec,0)),0)+IFERROR(INDEX(jan_qty,MATCH(E8,jan,0)),0)+IFERROR(INDEX(feb_qty,MATCH(E8,feb,0)),0)

Best Regards
 
Upvote 0
Solution
Works perfect.
Bless your heart mamady! I'm grateful to people like you that are willing to help.
 
Upvote 0

Forum statistics

Threads
1,215,020
Messages
6,122,712
Members
449,093
Latest member
Mnur

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