• 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 in multiple pages.

Belleke

Well-Known Member
I have this formula:
Code:
=VLOOKUP(H1;Info1!A:B;2;FALSE)
So when I type a number in H1, the value should appear in columm B, next to the number.
This is working for 1 worksheet, but I want it working for al worksheets.
In my example, if I type 5 ,the word Praag Should appear next to Number 5.
 

Attachments

  • CPT-Test.xlsx
    11.6 KB · Views: 2
Thanks,I already looked there, but after a year in hospital, i can't follow these guidings anymore, i need simpler answers.
 
In B2 copied down:

=IFERROR(VLOOKUP(A2,INDIRECT("'Info"&$H$1&"'!A:B"),2,FALSE),"")
 

Attachments

  • Belleke CPT-Test Chandoo AliGW.xlsx
    11.8 KB · Views: 3

Belleke

Your original ... was ... when I type a number in H1, the value should appear in columm B, next to the number.
My should work as You've written.
 
It is, but if tables aren't possible, you can easily limit the range:

=IFERROR(VLOOKUP(A2,INDIRECT("'Info"&$H$1&"'!A1:B10000"),2,FALSE),"")
 
Back
Top