Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 49
Default Indirect to a closed spreadsheet

Hi,
I have a formula
=INDIRECT("'S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position - data'!B" &
COUNT('S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position -
data'!J63:J200) + 62 )

Which finds the latest contract, which are a mix of text and numeric, the
count part works fine BUT the indirect part fails

Has anyone made a add-in that deals withthis problem, or is there a way
around this problem.

I have no Control over the remote spread sheet

Thanka MarkS
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default Indirect to a closed spreadsheet

If you want to use INDIRECT on a closed workbook, you'll need to use
Indirect.ext which is in the MOREFUNC add in found here

http://xcell05.free.fr/morefunc/english/

I believe that it opens the workbook and extracts the data every time the
worksheet is calculated. If I'm wrong, someone can correct me.

HTH,
Barb Reinhardt

If this post was helpful to you, please click YES below.



"MarkS" wrote:

Hi,
I have a formula
=INDIRECT("'S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position - data'!B" &
COUNT('S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position -
data'!J63:J200) + 62 )

Which finds the latest contract, which are a mix of text and numeric, the
count part works fine BUT the indirect part fails

Has anyone made a add-in that deals withthis problem, or is there a way
around this problem.

I have no Control over the remote spread sheet

Thanka MarkS

  #3   Report Post  
Posted to microsoft.public.excel.programming
JMB JMB is offline
external usenet poster
 
Posts: 2,062
Default Indirect to a closed spreadsheet


http://xcell05.free.fr/morefunc/english/index.htm

"MarkS" wrote:

Hi,
I have a formula
=INDIRECT("'S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position - data'!B" &
COUNT('S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position -
data'!J63:J200) + 62 )

Which finds the latest contract, which are a mix of text and numeric, the
count part works fine BUT the indirect part fails

Has anyone made a add-in that deals withthis problem, or is there a way
around this problem.

I have no Control over the remote spread sheet

Thanka MarkS

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 49
Default Indirect to a closed spreadsheet

Hi,
I'll download that and try it out, there is a note that it sometimes doesn't
work

Thanks MarkS

"JMB" wrote:


http://xcell05.free.fr/morefunc/english/index.htm

"MarkS" wrote:

Hi,
I have a formula
=INDIRECT("'S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position - data'!B" &
COUNT('S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position -
data'!J63:J200) + 62 )

Which finds the latest contract, which are a mix of text and numeric, the
count part works fine BUT the indirect part fails

Has anyone made a add-in that deals withthis problem, or is there a way
around this problem.

I have no Control over the remote spread sheet

Thanka MarkS

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 49
Default Indirect to a closed spreadsheet

Hi,

Installed morefunc, works great. The stats functions look useful, will have
to give them a try

Thanks

"MarkS" wrote:

Hi,
I'll download that and try it out, there is a note that it sometimes doesn't
work

Thanks MarkS

"JMB" wrote:


http://xcell05.free.fr/morefunc/english/index.htm

"MarkS" wrote:

Hi,
I have a formula
=INDIRECT("'S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position - data'!B" &
COUNT('S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position -
data'!J63:J200) + 62 )

Which finds the latest contract, which are a mix of text and numeric, the
count part works fine BUT the indirect part fails

Has anyone made a add-in that deals withthis problem, or is there a way
around this problem.

I have no Control over the remote spread sheet

Thanka MarkS



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default Indirect to a closed spreadsheet

It appears to me that the Indirect.Ext function opens the workbook and
updates the cell every time the worksheet is calculated. If you have a lot
of them and the closed workbooks are on a server elsewhere, you may want to
rethink your approach.

FWIW, I used this until the calculation time was extreme and then learned
more about VBA to do what I wanted to do.

Barb Reinhardt


"MarkS" wrote:

Hi,

Installed morefunc, works great. The stats functions look useful, will have
to give them a try

Thanks

"MarkS" wrote:

Hi,
I'll download that and try it out, there is a note that it sometimes doesn't
work

Thanks MarkS

"JMB" wrote:


http://xcell05.free.fr/morefunc/english/index.htm

"MarkS" wrote:

Hi,
I have a formula
=INDIRECT("'S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position - data'!B" &
COUNT('S:\STAR\Renewable Energy\Renewable Position Reports\Positions
Re-Pointed to ECO\[CCX Position Report - 140408.xls]AGL position -
data'!J63:J200) + 62 )

Which finds the latest contract, which are a mix of text and numeric, the
count part works fine BUT the indirect part fails

Has anyone made a add-in that deals withthis problem, or is there a way
around this problem.

I have no Control over the remote spread sheet

Thanka MarkS

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
Use of the Indirect function on a closed workbook. Surveymark Excel Discussion (Misc queries) 7 July 10th 09 06:27 PM
Indirect referencing closed spreadsheets GSM Excel Discussion (Misc queries) 1 February 14th 08 02:41 PM
INDIRECT should be updated to work on closed workbooks. Robert_L_Ross Excel Worksheet Functions 0 December 4th 07 05:47 PM
what exactly prevents INDIRECT from accessing closed worksheets? z.entropic Excel Worksheet Functions 3 July 24th 07 03:02 PM
Indirect to a closed workbook MarkS Excel Programming 1 May 8th 07 04:31 AM


All times are GMT +1. The time now is 02:38 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"