Nestted Vlookup !!!!!!!!

ETurner00

New Member
Joined
Feb 10, 2016
Messages
4
Hi,


I have data in column L3 to L26 this is my look up value. My table array is is from A3:I112. The data in the table array is grouped by week day. Coulmn A in the table array shows the days Monday, Tuesday......etc. Column B in the table array is the same data in Column L3. What do I need to do to b able to pull the data in column B, but only for a certain days like Thursday? Also the data in column L repeats on Monday-Sunday. :confused:
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Not the best way but:

Insert a helper column e.g. column J where you concatenate the two criteria: =CONCATENATE(A1,B1) so this will be Monday+criteria

Assuming you want to get data from B into column M:

then in cell M1 you put =INDEX(B:B,match(CONCATENATE("Thursday",L1),J:J,false))

Let me know if it works?
 
Upvote 0
Not the best way but:

Insert a helper column e.g. column J where you concatenate the two criteria: =CONCATENATE(A1,B1) so this will be Monday+criteria

Assuming you want to get data from B into column M:

then in cell M1 you put =INDEX(B:B,match(CONCATENATE("Thursday",L1),J:J,false))

Let me know if it works?

Should obviously be Thursday.
 
Upvote 0
Almost. I am trying to pull data from column 9 in the table array A3:I112. When I tried your method I got =INDEX(I:I,MATCH(CONCATENATE("Thursday",L3),$J$3:$J$112,0)). Its pulling the format of the data in column I but its not an exact match, for example L3 should bring back 1 when referecing from the table array, for some reason I get 6 which is not matching anything on thursday, bust some do match so I am not sure what I did wrong. Also I created the helper column in J thats a niffty trick!
 
Upvote 0
Should obviously be Thursday.




Hey I was able to do it by using concantenate helpers cells and Iferror/vlookup. Thanks for your help. Also I m new to thissite so if there is a way to give credit for helping with the answered questions let me know and I will reward
 
Upvote 0
Hopefully I got this right (working blond lol) but this should do what you want without the use of a helper...
=INDEX($B$2:$B$100,match("Thursday"&L1,index($A$2:$A$100&$B$3:$B$100,0),0))
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,399
Members
449,446
Latest member
CodeCybear

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