Vlookup result of a formula for Table Name

scottkalas

New Member
Joined
Jan 3, 2018
Messages
3
I'm trying to use the result of a formula as the array of a Vlookup formula

In cell K3 I have the value of from a validation list from another workbook

In cell M3 I have the formula =CONCATENATE($K3,"_Info")

In cell K19 I have the value from a validation list from another workbook (same workbook different validation list)

In cell K20 when I use the formula =VLOOKUP(K$19,SITB_Info,2) I get the correct result

In cell K20 when I use the formula =VLOOKUP(K$19,$M$3,2) I get the result #N/A

Is there a way to get the correct result using the 2nd formula or similar

Thanks
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Indirect is usually how you get a formula result to act as a look up table so not quite sure why that isn't working. Maybe in a blank cell put this:

Code:
=M3="SITB_Info"

If that returns TRUE then I'm not sure what is needed but if it returns false it'd mean the formula result doesn't match the name of your table range.
 
Upvote 0

Forum statistics

Threads
1,214,907
Messages
6,122,181
Members
449,071
Latest member
cdnMech

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