#1   Report Post  
Posted to microsoft.public.excel.misc
Mike McLellan
 
Posts: n/a
Default VLOOKUP

I want to use VLOOKUP to help produce a summary spreadsheet from a number of
files.

Cell C10 contains - =CONCATENATE("D:\Documents and Settings\fzvtc6\My
Documents\EDS
Documents\Shared\Excel\LPS\SLA\",TEXT($A10,"yyyymm dd"),"\[",TEXT($A10,"yyyymmdd")," - Weekly - All locations - LPS - Live.xls]Weekly!$A$1:$Z:50")

which evaluates as - D:\Documents and Settings\fzvtc6\My Documents\EDS
Documents\Shared\Excel\LPS\SLA\20060320\[20060320 - Weekly - All locations -
LPS - Live.xls]Weekly!$A$1:$Z:50

In cell F10, I want to be able to incorporate a call to VLOOKUP along the
following lines - =VLOOKUP(D10,INDIRECT(C10),3,FALSE)

When I try this, I get an #REF! error. Can anyone tell me where I'm going
wrong?

  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default VLOOKUP

If you open that "sending" workbook, you'll see that you did everything perfect.

But =indirect() only works if the "sending" workbook is open.

Laurent Longre has an addin (morefunc.xll) at:
http://xcell05.free.fr/

That includes =indirect.ext() that may help you.

Mike McLellan wrote:

I want to use VLOOKUP to help produce a summary spreadsheet from a number of
files.

Cell C10 contains - =CONCATENATE("D:\Documents and Settings\fzvtc6\My
Documents\EDS
Documents\Shared\Excel\LPS\SLA\",TEXT($A10,"yyyymm dd"),"\[",TEXT($A10,"yyyymmdd")," - Weekly - All locations - LPS - Live.xls]Weekly!$A$1:$Z:50")

which evaluates as - D:\Documents and Settings\fzvtc6\My Documents\EDS
Documents\Shared\Excel\LPS\SLA\20060320\[20060320 - Weekly - All locations -
LPS - Live.xls]Weekly!$A$1:$Z:50

In cell F10, I want to be able to incorporate a call to VLOOKUP along the
following lines - =VLOOKUP(D10,INDIRECT(C10),3,FALSE)

When I try this, I get an #REF! error. Can anyone tell me where I'm going
wrong?


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
Mike McLellan
 
Posts: n/a
Default VLOOKUP

Thanks, Dave.

INDIRECT.EXT requires that the whole string is enclosed by double quotes -
how do I amend formula in C10 to achieve this?

"Dave Peterson" wrote:

If you open that "sending" workbook, you'll see that you did everything perfect.

But =indirect() only works if the "sending" workbook is open.

Laurent Longre has an addin (morefunc.xll) at:
http://xcell05.free.fr/

That includes =indirect.ext() that may help you.

Mike McLellan wrote:

I want to use VLOOKUP to help produce a summary spreadsheet from a number of
files.

Cell C10 contains - =CONCATENATE("D:\Documents and Settings\fzvtc6\My
Documents\EDS
Documents\Shared\Excel\LPS\SLA\",TEXT($A10,"yyyymm dd"),"\[",TEXT($A10,"yyyymmdd")," - Weekly - All locations - LPS - Live.xls]Weekly!$A$1:$Z:50")

which evaluates as - D:\Documents and Settings\fzvtc6\My Documents\EDS
Documents\Shared\Excel\LPS\SLA\20060320\[20060320 - Weekly - All locations -
LPS - Live.xls]Weekly!$A$1:$Z:50

In cell F10, I want to be able to incorporate a call to VLOOKUP along the
following lines - =VLOOKUP(D10,INDIRECT(C10),3,FALSE)

When I try this, I get an #REF! error. Can anyone tell me where I'm going
wrong?


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default VLOOKUP

Maybe...

=VLOOKUP(D10,INDIRECT.ext(""""&C10&""""),3,FALSE)



Mike McLellan wrote:

Thanks, Dave.

INDIRECT.EXT requires that the whole string is enclosed by double quotes -
how do I amend formula in C10 to achieve this?

"Dave Peterson" wrote:

If you open that "sending" workbook, you'll see that you did everything perfect.

But =indirect() only works if the "sending" workbook is open.

Laurent Longre has an addin (morefunc.xll) at:
http://xcell05.free.fr/

That includes =indirect.ext() that may help you.

Mike McLellan wrote:

I want to use VLOOKUP to help produce a summary spreadsheet from a number of
files.

Cell C10 contains - =CONCATENATE("D:\Documents and Settings\fzvtc6\My
Documents\EDS
Documents\Shared\Excel\LPS\SLA\",TEXT($A10,"yyyymm dd"),"\[",TEXT($A10,"yyyymmdd")," - Weekly - All locations - LPS - Live.xls]Weekly!$A$1:$Z:50")

which evaluates as - D:\Documents and Settings\fzvtc6\My Documents\EDS
Documents\Shared\Excel\LPS\SLA\20060320\[20060320 - Weekly - All locations -
LPS - Live.xls]Weekly!$A$1:$Z:50

In cell F10, I want to be able to incorporate a call to VLOOKUP along the
following lines - =VLOOKUP(D10,INDIRECT(C10),3,FALSE)

When I try this, I get an #REF! error. Can anyone tell me where I'm going
wrong?


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
Mike McLellan
 
Posts: n/a
Default VLOOKUP

Almost there.

I am now getting an #VALUE! error - any ideas?

"Dave Peterson" wrote:

Maybe...

=VLOOKUP(D10,INDIRECT.ext(""""&C10&""""),3,FALSE)



Mike McLellan wrote:

Thanks, Dave.

INDIRECT.EXT requires that the whole string is enclosed by double quotes -
how do I amend formula in C10 to achieve this?

"Dave Peterson" wrote:

If you open that "sending" workbook, you'll see that you did everything perfect.

But =indirect() only works if the "sending" workbook is open.

Laurent Longre has an addin (morefunc.xll) at:
http://xcell05.free.fr/

That includes =indirect.ext() that may help you.

Mike McLellan wrote:

I want to use VLOOKUP to help produce a summary spreadsheet from a number of
files.

Cell C10 contains - =CONCATENATE("D:\Documents and Settings\fzvtc6\My
Documents\EDS
Documents\Shared\Excel\LPS\SLA\",TEXT($A10,"yyyymm dd"),"\[",TEXT($A10,"yyyymmdd")," - Weekly - All locations - LPS - Live.xls]Weekly!$A$1:$Z:50")

which evaluates as - D:\Documents and Settings\fzvtc6\My Documents\EDS
Documents\Shared\Excel\LPS\SLA\20060320\[20060320 - Weekly - All locations -
LPS - Live.xls]Weekly!$A$1:$Z:50

In cell F10, I want to be able to incorporate a call to VLOOKUP along the
following lines - =VLOOKUP(D10,INDIRECT(C10),3,FALSE)

When I try this, I get an #REF! error. Can anyone tell me where I'm going
wrong?

--

Dave Peterson


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default VLOOKUP

I'd open that other workbook.
Build my formula so that it works with =indirect()
close the other workbook (so you see the path)
and see if just changing =indirect() to =indirect.ext() would make it work.

Mike McLellan wrote:

Almost there.

I am now getting an #VALUE! error - any ideas?

"Dave Peterson" wrote:

Maybe...

=VLOOKUP(D10,INDIRECT.ext(""""&C10&""""),3,FALSE)



Mike McLellan wrote:

Thanks, Dave.

INDIRECT.EXT requires that the whole string is enclosed by double quotes -
how do I amend formula in C10 to achieve this?

"Dave Peterson" wrote:

If you open that "sending" workbook, you'll see that you did everything perfect.

But =indirect() only works if the "sending" workbook is open.

Laurent Longre has an addin (morefunc.xll) at:
http://xcell05.free.fr/

That includes =indirect.ext() that may help you.

Mike McLellan wrote:

I want to use VLOOKUP to help produce a summary spreadsheet from a number of
files.

Cell C10 contains - =CONCATENATE("D:\Documents and Settings\fzvtc6\My
Documents\EDS
Documents\Shared\Excel\LPS\SLA\",TEXT($A10,"yyyymm dd"),"\[",TEXT($A10,"yyyymmdd")," - Weekly - All locations - LPS - Live.xls]Weekly!$A$1:$Z:50")

which evaluates as - D:\Documents and Settings\fzvtc6\My Documents\EDS
Documents\Shared\Excel\LPS\SLA\20060320\[20060320 - Weekly - All locations -
LPS - Live.xls]Weekly!$A$1:$Z:50

In cell F10, I want to be able to incorporate a call to VLOOKUP along the
following lines - =VLOOKUP(D10,INDIRECT(C10),3,FALSE)

When I try this, I get an #REF! error. Can anyone tell me where I'm going
wrong?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.misc
Mike McLellan
 
Posts: n/a
Default VLOOKUP

Did as you suggested:

- =VLOOKUP(D11,INDIRECT(C11),3,FALSE) works
- changed to =VLOOKUP(D11,INDIRECT.ext(C11),3,FALSE) - doesn't work
- tried =VLOOKUP(D11,INDIRECT("""&C11&"""),3,FALSE) - doesn't work

Any ideas?

"Dave Peterson" wrote:

I'd open that other workbook.
Build my formula so that it works with =indirect()
close the other workbook (so you see the path)
and see if just changing =indirect() to =indirect.ext() would make it work.

Mike McLellan wrote:

Almost there.

I am now getting an #VALUE! error - any ideas?

"Dave Peterson" wrote:

Maybe...

=VLOOKUP(D10,INDIRECT.ext(""""&C10&""""),3,FALSE)



Mike McLellan wrote:

Thanks, Dave.

INDIRECT.EXT requires that the whole string is enclosed by double quotes -
how do I amend formula in C10 to achieve this?

"Dave Peterson" wrote:

If you open that "sending" workbook, you'll see that you did everything perfect.

But =indirect() only works if the "sending" workbook is open.

Laurent Longre has an addin (morefunc.xll) at:
http://xcell05.free.fr/

That includes =indirect.ext() that may help you.

Mike McLellan wrote:

I want to use VLOOKUP to help produce a summary spreadsheet from a number of
files.

Cell C10 contains - =CONCATENATE("D:\Documents and Settings\fzvtc6\My
Documents\EDS
Documents\Shared\Excel\LPS\SLA\",TEXT($A10,"yyyymm dd"),"\[",TEXT($A10,"yyyymmdd")," - Weekly - All locations - LPS - Live.xls]Weekly!$A$1:$Z:50")

which evaluates as - D:\Documents and Settings\fzvtc6\My Documents\EDS
Documents\Shared\Excel\LPS\SLA\20060320\[20060320 - Weekly - All locations -
LPS - Live.xls]Weekly!$A$1:$Z:50

In cell F10, I want to be able to incorporate a call to VLOOKUP along the
following lines - =VLOOKUP(D10,INDIRECT(C10),3,FALSE)

When I try this, I get an #REF! error. Can anyone tell me where I'm going
wrong?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson

  #8   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default VLOOKUP

I used 4 double quotes in my first suggestion:
=VLOOKUP(D10,INDIRECT.ext(""""&C10&""""),3,FALSE)

Did that not work?

Mike McLellan wrote:

Did as you suggested:

- =VLOOKUP(D11,INDIRECT(C11),3,FALSE) works
- changed to =VLOOKUP(D11,INDIRECT.ext(C11),3,FALSE) - doesn't work
- tried =VLOOKUP(D11,INDIRECT("""&C11&"""),3,FALSE) - doesn't work

Any ideas?

"Dave Peterson" wrote:

I'd open that other workbook.
Build my formula so that it works with =indirect()
close the other workbook (so you see the path)
and see if just changing =indirect() to =indirect.ext() would make it work.

Mike McLellan wrote:

Almost there.

I am now getting an #VALUE! error - any ideas?

"Dave Peterson" wrote:

Maybe...

=VLOOKUP(D10,INDIRECT.ext(""""&C10&""""),3,FALSE)



Mike McLellan wrote:

Thanks, Dave.

INDIRECT.EXT requires that the whole string is enclosed by double quotes -
how do I amend formula in C10 to achieve this?

"Dave Peterson" wrote:

If you open that "sending" workbook, you'll see that you did everything perfect.

But =indirect() only works if the "sending" workbook is open.

Laurent Longre has an addin (morefunc.xll) at:
http://xcell05.free.fr/

That includes =indirect.ext() that may help you.

Mike McLellan wrote:

I want to use VLOOKUP to help produce a summary spreadsheet from a number of
files.

Cell C10 contains - =CONCATENATE("D:\Documents and Settings\fzvtc6\My
Documents\EDS
Documents\Shared\Excel\LPS\SLA\",TEXT($A10,"yyyymm dd"),"\[",TEXT($A10,"yyyymmdd")," - Weekly - All locations - LPS - Live.xls]Weekly!$A$1:$Z:50")

which evaluates as - D:\Documents and Settings\fzvtc6\My Documents\EDS
Documents\Shared\Excel\LPS\SLA\20060320\[20060320 - Weekly - All locations -
LPS - Live.xls]Weekly!$A$1:$Z:50

In cell F10, I want to be able to incorporate a call to VLOOKUP along the
following lines - =VLOOKUP(D10,INDIRECT(C10),3,FALSE)

When I try this, I get an #REF! error. Can anyone tell me where I'm going
wrong?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VLOOKUP Problem Ian Excel Discussion (Misc queries) 3 April 6th 06 06:47 PM
Using single cell reference as table array argument in Vlookup CornNiblet Excel Worksheet Functions 3 September 22nd 05 09:15 AM
VLOOKUP Limitations chris_manning Excel Worksheet Functions 2 August 9th 05 06:23 PM
Have Vlookup return a Value of 0 instead of #N/A Mr Mike Excel Worksheet Functions 4 May 25th 05 04:51 PM
vlookup data hidden within worksheet Excel Worksheet Functions 0 January 26th 05 12:09 PM


All times are GMT +1. The time now is 09:14 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"