Vlookup with a pick list for tables

  • Thread starter Thread starter Cole
  • Start date Start date
C

Cole

In Vlookup function for the table array argument, I would like to use a pick
list for the table that will be used. In other words, the customer will
select from a list of named table ranges.
=VLOOKUP(F34,(Select from Drop down list of table ranges),3,FALSE)
It seems when I select from the pick-list cell, with the named table ranges,
it uses this name as a value instead of the array. How can I specify that
this value is a named range?

Thanks
 
In Vlookup function for the table array argument, I would like to use a pick
list for the table that will be used. In other words, the customer will
select from a list of named table ranges.
=VLOOKUP(F34,(Select from Drop down list of table ranges),3,FALSE)
It seems when I select from the pick-list cell, with the named table ranges,
it uses this name as a value instead of the array. How can I specify that
this value is a named range?

Thanks


Use the INDIRECT function.

If H1 is a cell with data validation applied.
The list of valid data can be ranges, .like
A1:C10,D1:E15, and so on

Then put this formula in the cell where you want the result:

=VLOOKUP(F34,INDIRECT(H1),3)

Hope this helps / Lars-ÅKe
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

vlookup range 4
vlookup with dropdown list 3
vlookup with dropdown list 2
Excel Vlookup Help 0
VLOOKUP returning #N/A result 2
vlookup table_array 4
VLOOKUP TABLE ERROR 6
Vlookup Update 2

Back
Top