• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Vlookup across Tabs

jennifer

New Member
Is their a way to write a vlookup formula that will go to a drop down cell and get that name and go to the respective tab and pull data?
 
Yes, you could use the INDIRECT function. Let's say the dropdown with sheet names is in A1.
Formula would be something like:
=VLOOKUP(A2,INDIRECT("'" & A1 & "'!A:E"),5,FALSE)
 
Back
Top