View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Domenic Domenic is offline
external usenet poster
 
Posts: 256
Default vlookup on 3 different tables - please HELP

If the free add-in Morefunc.xll is downloaded and installed, then
something like the following formula can be used...

=VLOOKUP(B2,THREED('Sheet1:Sheet3'!$A$2:$B$100),2, 0)

Alternatively, let A2:A4 contain the sheet names, then try the following
formula which needs to be confirmed with CONTROL+SHIFT+ENTER, not just
ENTER...

=VLOOKUP(B2,INDIRECT("'"&INDEX($A$2:$A$4,MATCH(TRU E,COUNTIF(INDIRECT("'"&
$A$2:$A$4&"'!A2:A100"),B2)0,0))&"'!A2:B100"),2,0)

The add-in can be downloaded here...

http://xcell05.free.fr/

Hope this helps!

In article ,
Nir wrote:

Hi
I have a value that can be found in coulmn A of 3 different tables, i would
like to perform the lookup on the 3 tables. can it be done without unifying
the tables?

thanks