Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Formula Content linked to other cells formula Content

Hi all,

Is there any possibility that multiple cells are linked to one cell and
applying the same formula with column or row increament and modified
autometically as orignal cells formula change, for example

In A5 formula is: =Sum(A1:A4)
In B5 (which is required to be linked with A5) has fomula bse on A5 formula
with column increament i.e. =Sum(B1:B4)

I need to know that if there is any possibility that when i change the range
of formula in cell A5 (for example from =sum(a1:a4) to =sum(a1:a3)) the cell
B5 autometically incorporate the change and modified its own formula (from
=sum(b1:b4) to =sum(b1:b3))

If there would be any possibility than it would be really helpful
  #2   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Formula Content linked to other cells formula Content

Just hazarding a guess here ...
Maybe something like this is what you're after?

Let's say you have a defined "base" range: MyR
which refers to: =Sheet1!$A$1:$A$4

Then you have this placed in Sheet1's A5:
=SUM(OFFSET(MyR,,COLUMNS($A:A)-1))
[ the above's the same as the much simpler: =SUM(A1:A4) ]

And you copy A5 across to B5, C5 etc to return the corresponding sums, all
of which are pegged to MyR.

If you have the above set-up, you could then amend MyR's range "centrally"
via clicking Insert Name Define, and adjust it to refer to say:
=Sheet1!$A$1:$A$3 instead. And when you do so, all the formulas in A5, B5, C5
etc would then adjust automatically to refer to the shortened range.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:363 Subscribers:64
xdemechanik
---
"Flawlesgem" wrote:
Is there any possibility that multiple cells are linked to one cell and
applying the same formula with column or row increament and modified
autometically as orignal cells formula change, for example

In A5 formula is: =Sum(A1:A4)
In B5 (which is required to be linked with A5) has fomula bse on A5 formula
with column increament i.e. =Sum(B1:B4)

I need to know that if there is any possibility that when i change the range
of formula in cell A5 (for example from =sum(a1:a4) to =sum(a1:a3)) the cell
B5 autometically incorporate the change and modified its own formula (from
=sum(b1:b4) to =sum(b1:b3))

If there would be any possibility than it would be really helpful

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Formula Content linked to other cells formula Content

The solution is perfect to what i am looking for
One more thing wat if the formula in the cell not refer to any range, only
just refer to two individual cells like =A1*A4

"Max" wrote:

Just hazarding a guess here ...
Maybe something like this is what you're after?

Let's say you have a defined "base" range: MyR
which refers to: =Sheet1!$A$1:$A$4

Then you have this placed in Sheet1's A5:
=SUM(OFFSET(MyR,,COLUMNS($A:A)-1))
[ the above's the same as the much simpler: =SUM(A1:A4) ]

And you copy A5 across to B5, C5 etc to return the corresponding sums, all
of which are pegged to MyR.

If you have the above set-up, you could then amend MyR's range "centrally"
via clicking Insert Name Define, and adjust it to refer to say:
=Sheet1!$A$1:$A$3 instead. And when you do so, all the formulas in A5, B5, C5
etc would then adjust automatically to refer to the shortened range.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:363 Subscribers:64
xdemechanik
---
"Flawlesgem" wrote:
Is there any possibility that multiple cells are linked to one cell and
applying the same formula with column or row increament and modified
autometically as orignal cells formula change, for example

In A5 formula is: =Sum(A1:A4)
In B5 (which is required to be linked with A5) has fomula bse on A5 formula
with column increament i.e. =Sum(B1:B4)

I need to know that if there is any possibility that when i change the range
of formula in cell A5 (for example from =sum(a1:a4) to =sum(a1:a3)) the cell
B5 autometically incorporate the change and modified its own formula (from
=sum(b1:b4) to =sum(b1:b3))

If there would be any possibility than it would be really helpful

  #4   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Formula Content linked to other cells formula Content

"Flawlesgem" wrote:
The solution is perfect to what i am looking for


Welcome. Pl take a moment to rate that earlier response. Go back and click
the Yes button (like the one below). Thanks.

One more thing what if the formula in the cell not refer to any range, only
just refer to two individual cells like =A1*A4


I suppose you mean a discontiguous range?
Still possible to define such, eg:
MyR: =Sheet1!$A$1,Sheet1!$A$4
but it may not work as expected, unlike the earlier contiguous range
You could try tinkering around with it

Ditto for a single cell defined range, eg:
MySingleR: =Sheet1!$A$1

If you mean operate likewise w/o using a defined range, I don't know.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:363 Subscribers:64
xdemechanik
---
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Formula Content linked to other cells formula Content

Thanks alot, and will take care next time to rate the post

Regards





"Max" wrote:

"Flawlesgem" wrote:
The solution is perfect to what i am looking for


Welcome. Pl take a moment to rate that earlier response. Go back and click
the Yes button (like the one below). Thanks.

One more thing what if the formula in the cell not refer to any range, only
just refer to two individual cells like =A1*A4


I suppose you mean a discontiguous range?
Still possible to define such, eg:
MyR: =Sheet1!$A$1,Sheet1!$A$4
but it may not work as expected, unlike the earlier contiguous range
You could try tinkering around with it

Ditto for a single cell defined range, eg:
MySingleR: =Sheet1!$A$1

If you mean operate likewise w/o using a defined range, I don't know.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:363 Subscribers:64
xdemechanik
---



  #6   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Formula Content linked to other cells formula Content

Welcome, thanks.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:362 Subscribers:64
xdemechanik
---
"Flawlesgem" wrote in message
...
Thanks alot, and will take care next time to rate the post



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
display content of linked cell Lynn Excel Worksheet Functions 3 January 5th 07 05:04 PM
How to transpose formulas from column content to row content. Notrom Excel Worksheet Functions 1 October 12th 06 06:57 PM
How do I find cells with linked content Cowtoon Excel Discussion (Misc queries) 5 January 19th 06 12:38 PM
Formula reading formula instead of cell content roy.okinawa Excel Worksheet Functions 1 November 29th 05 03:20 AM
Cannot drag content or formula to another cells Brian Excel Discussion (Misc queries) 2 February 14th 05 11:46 PM


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