Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default Linking a reference within a formula

Is it possible to have a link to another cell that is derived from a
concatenate formula?

I have a spread sheet that is created weekly that displays our daily
forecasts. Each week is stored in the same spreadsheet, but the individual
day's forecast location differs. I've created a concatenate formula that
gives me a link to the formula as it should read in the spreadsheet, but I
cannot get the data in the other spreadsheet to populate....any help?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Linking a reference within a formula

Check out the INDIRECT function.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"phd4212" wrote:

Is it possible to have a link to another cell that is derived from a
concatenate formula?

I have a spread sheet that is created weekly that displays our daily
forecasts. Each week is stored in the same spreadsheet, but the individual
day's forecast location differs. I've created a concatenate formula that
gives me a link to the formula as it should read in the spreadsheet, but I
cannot get the data in the other spreadsheet to populate....any help?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default Linking a reference within a formula

The cell that I would like to reference is linked in a different
worksheet--so does that cause the indirect function to be moot?

"Luke M" wrote:

Check out the INDIRECT function.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"phd4212" wrote:

Is it possible to have a link to another cell that is derived from a
concatenate formula?

I have a spread sheet that is created weekly that displays our daily
forecasts. Each week is stored in the same spreadsheet, but the individual
day's forecast location differs. I've created a concatenate formula that
gives me a link to the formula as it should read in the spreadsheet, but I
cannot get the data in the other spreadsheet to populate....any help?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Linking a reference within a formula

I've created a concatenate formula that gives me a link

The cell that I would like to reference is linked in a
different worksheet--so does that cause the
indirect function to be moot?


No. Post your concatenate formula so we can see what you're trying to do.

--
Biff
Microsoft Excel MVP


"phd4212" wrote in message
...
The cell that I would like to reference is linked in a different
worksheet--so does that cause the indirect function to be moot?

"Luke M" wrote:

Check out the INDIRECT function.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"phd4212" wrote:

Is it possible to have a link to another cell that is derived from a
concatenate formula?

I have a spread sheet that is created weekly that displays our daily
forecasts. Each week is stored in the same spreadsheet, but the
individual
day's forecast location differs. I've created a concatenate formula
that
gives me a link to the formula as it should read in the spreadsheet,
but I
cannot get the data in the other spreadsheet to populate....any help?



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default Linking a reference within a formula

='K:\Actual Orders vs Forecast\2010 Actual vs Forecast\[2.15.10 to
2.19.10.xls]Friday'!$D$3

That is currently the hyperlink I have and I have to manually change the day
every day. I have written the concatenate formula

=CONCATENATE("='K:\Actual Orders vs Forecast\2010 Actual vs
Forecast\[",TEXT(F1,"mm.dd.yy"), " to
",MONTH(F1+4),".",DAY(F1+4),".",RIGHT(YEAR(F1+4),2 ),".xls]",TEXT(C1,"dddd"),"'!$G$3")

With F1 holding the Monday of the Week; c1 containing the current day


"T. Valko" wrote:

I've created a concatenate formula that gives me a link


The cell that I would like to reference is linked in a
different worksheet--so does that cause the
indirect function to be moot?


No. Post your concatenate formula so we can see what you're trying to do.

--
Biff
Microsoft Excel MVP


"phd4212" wrote in message
...
The cell that I would like to reference is linked in a different
worksheet--so does that cause the indirect function to be moot?

"Luke M" wrote:

Check out the INDIRECT function.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"phd4212" wrote:

Is it possible to have a link to another cell that is derived from a
concatenate formula?

I have a spread sheet that is created weekly that displays our daily
forecasts. Each week is stored in the same spreadsheet, but the
individual
day's forecast location differs. I've created a concatenate formula
that
gives me a link to the formula as it should read in the spreadsheet,
but I
cannot get the data in the other spreadsheet to populate....any help?



.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Linking a reference within a formula

='K:\Actual Orders vs Forecast\2010 Actual vs Forecast\[2.15.10 to
2.19.10.xls]Friday'!$D$3

Since the link is to another file, using INDIRECT will require that the
other be open. This is usually undesireable.

There is a free add-in called Morefunc.xll that has a function called
INDIRECT.EXT that might work for you. It works much like the built-in
INDIRECT function except that the source file doesn't need to be open.

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

Alternate download site:

http://www.download.com/Morefunc/300...-10423159.html

--
Biff
Microsoft Excel MVP


"phd4212" wrote in message
...
='K:\Actual Orders vs Forecast\2010 Actual vs Forecast\[2.15.10 to
2.19.10.xls]Friday'!$D$3

That is currently the hyperlink I have and I have to manually change the
day
every day. I have written the concatenate formula

=CONCATENATE("='K:\Actual Orders vs Forecast\2010 Actual vs
Forecast\[",TEXT(F1,"mm.dd.yy"), " to
",MONTH(F1+4),".",DAY(F1+4),".",RIGHT(YEAR(F1+4),2 ),".xls]",TEXT(C1,"dddd"),"'!$G$3")

With F1 holding the Monday of the Week; c1 containing the current day


"T. Valko" wrote:

I've created a concatenate formula that gives me a link


The cell that I would like to reference is linked in a
different worksheet--so does that cause the
indirect function to be moot?


No. Post your concatenate formula so we can see what you're trying to do.

--
Biff
Microsoft Excel MVP


"phd4212" wrote in message
...
The cell that I would like to reference is linked in a different
worksheet--so does that cause the indirect function to be moot?

"Luke M" wrote:

Check out the INDIRECT function.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"phd4212" wrote:

Is it possible to have a link to another cell that is derived from a
concatenate formula?

I have a spread sheet that is created weekly that displays our daily
forecasts. Each week is stored in the same spreadsheet, but the
individual
day's forecast location differs. I've created a concatenate formula
that
gives me a link to the formula as it should read in the spreadsheet,
but I
cannot get the data in the other spreadsheet to populate....any
help?



.



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 269
Default Linking a reference within a formula

the indirect function will do this

=INDIRECT(CONCATENATE("A","1")) entered in cell behaves like =A1

The INDIRECT function is a volitile function (recalculated everytime any
recalulation is triggerd even is the cell with the fuction is not impacted)
and overuse can dslow dow recalculations.
--
If this helps, please remember to click yes.


"phd4212" wrote:

Is it possible to have a link to another cell that is derived from a
concatenate formula?

I have a spread sheet that is created weekly that displays our daily
forecasts. Each week is stored in the same spreadsheet, but the individual
day's forecast location differs. I've created a concatenate formula that
gives me a link to the formula as it should read in the spreadsheet, but I
cannot get the data in the other spreadsheet to populate....any help?

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default Linking a reference within a formula

The cell that I would like to reference is linked in a different
worksheet--so does that cause the indirect function to be moot?

"Paul C" wrote:

the indirect function will do this

=INDIRECT(CONCATENATE("A","1")) entered in cell behaves like =A1

The INDIRECT function is a volitile function (recalculated everytime any
recalulation is triggerd even is the cell with the fuction is not impacted)
and overuse can dslow dow recalculations.
--
If this helps, please remember to click yes.


"phd4212" wrote:

Is it possible to have a link to another cell that is derived from a
concatenate formula?

I have a spread sheet that is created weekly that displays our daily
forecasts. Each week is stored in the same spreadsheet, but the individual
day's forecast location differs. I've created a concatenate formula that
gives me a link to the formula as it should read in the spreadsheet, but I
cannot get the data in the other spreadsheet to populate....any help?

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
linking a worksheet by a cell reference SC Excel Worksheet Functions 3 April 9th 08 05:15 PM
Absolute reference when linking workbooks suejay Excel Discussion (Misc queries) 2 March 30th 08 03:31 AM
Linking Cell Reference anshu[_2_] Excel Discussion (Misc queries) 1 July 25th 07 11:04 AM
Paste Linking with Absolute Reference MikeDH Excel Discussion (Misc queries) 6 September 6th 06 06:37 PM
How Do I Get a date reference when linking excel worksheets? Shawn Lyons Excel Worksheet Functions 3 May 16th 05 04:48 PM


All times are GMT +1. The time now is 05:41 PM.

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

About Us

"It's about Microsoft Excel"