Excel - Vlookup

  • Thread starter Thread starter shraddha
  • Start date Start date
S

shraddha

Is there a way to use 3-D reference in the vlookup
function? I'm trying to have the vlookup function look in
multiple sheets for a specific data.

I would appreciate any help.

Shraddha
 
Something like

=IF(ISNUMBER(MATCH(A1,Sheet2!A2:A100,0)),VLOOKUP(A1,Sheet2!A2:B100,2,0),IF(I
SNUMBER(MATCH(A1,Sheet3!A2:A100,0)),VLOOKUP(A1,Sheet3!A2:B100,2,0),IF(Isnumb
er and so on

of course you will soon run into the 7 nest limit if you have many sheets.
In that case you might want to download morefunc from Laurent Longre

http://longre.free.fr/english/

it has a function called threed that will return a 3D range into a single
array, then you could use vlookup
for that array
 

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

EXCEL - IF(IFERROR(VLOOKUP question 0
Need VLOOKUP to Work Two Ways 0
Vlookups not working 2
vlookup formatting problem 1
vlookup 2
Help With VLOOKUP 2
Dynamic col_index_num in VLOOKUP? 5
Vlookup Function 3

Back
Top