PC Review


Reply
Thread Tools Rate Thread

Control a variable from multiple cells

 
 
Ross Mau
Guest
Posts: n/a
 
      28th Sep 2007
I have an excel workbook with multiple worksheets. How do I create a
cell on each of the pages such that if I change it on any one sheet, I
will get that value in the cell I want on each individual worksheet?

If that's not clear, let's say on sheet 1 I want A1 to be tied to A2
on sheet 2. If I change sheet1 A1 I want sheet2 A2 to change to the
same value. Likewise if I change A2 on sheet 2 I want sheet1 A1 to
take the same value.

 
Reply With Quote
 
 
 
 
Wondering
Guest
Posts: n/a
 
      28th Sep 2007
That is a circular reference. In this case it cannot be resolved. If you
change A1 on sheet1, A2 on sheet2 changes to it (a1 on sheet1) and sheet1,
A1 then changes to sheet2, A2 which then changes to sheet1, A1 which then
changes to sheet2,.A2 which then changes to sheet1, A1 which then changes to
sheet2, A2, .......etc, Get the idea? Round and round we go. Where does it
stop?

"Ross Mau" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I have an excel workbook with multiple worksheets. How do I create a
> cell on each of the pages such that if I change it on any one sheet, I
> will get that value in the cell I want on each individual worksheet?
>
> If that's not clear, let's say on sheet 1 I want A1 to be tied to A2
> on sheet 2. If I change sheet1 A1 I want sheet2 A2 to change to the
> same value. Likewise if I change A2 on sheet 2 I want sheet1 A1 to
> take the same value.
>



 
Reply With Quote
 
Earl Kiosterud
Guest
Posts: n/a
 
      28th Sep 2007
Ross,

Two possibilities. First, put the value in one cell only, like Sheet1 A1, and have the
others linked to it. In other cells, you would have:
='Sheet1'!A1
You would change only Sheet1 A1. The links (formulas) must remain in the other cells.

If you need to be able to change any of the cells, and have the others follow, then you need
to have event macros that fire when a sheet is changed, examine which cell was changed, and
if it's one of those we care about, write that value into all the other cells.
--
Regards from Virginia Beach,

Earl Kiosterud
www.smokeylake.com

Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"Ross Mau" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I have an excel workbook with multiple worksheets. How do I create a
> cell on each of the pages such that if I change it on any one sheet, I
> will get that value in the cell I want on each individual worksheet?
>
> If that's not clear, let's say on sheet 1 I want A1 to be tied to A2
> on sheet 2. If I change sheet1 A1 I want sheet2 A2 to change to the
> same value. Likewise if I change A2 on sheet 2 I want sheet1 A1 to
> take the same value.
>



 
Reply With Quote
 
Wondering
Guest
Posts: n/a
 
      28th Sep 2007
I think the point is moot. It is a circular reference.

"Earl Kiosterud" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Ross,
>
> Two possibilities. First, put the value in one cell only, like Sheet1 A1,
> and have the others linked to it. In other cells, you would have:
> ='Sheet1'!A1
> You would change only Sheet1 A1. The links (formulas) must remain in the
> other cells.
>
> If you need to be able to change any of the cells, and have the others
> follow, then you need to have event macros that fire when a sheet is
> changed, examine which cell was changed, and if it's one of those we care
> about, write that value into all the other cells.
> --
> Regards from Virginia Beach,
>
> Earl Kiosterud
> www.smokeylake.com
>
> Note: Top-posting has been the norm here.
> Some folks prefer bottom-posting.
> But if you bottom-post to a reply that's
> already top-posted, the thread gets messy.
> When in Rome...
> -----------------------------------------------------------------------
> "Ross Mau" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>>I have an excel workbook with multiple worksheets. How do I create a
>> cell on each of the pages such that if I change it on any one sheet, I
>> will get that value in the cell I want on each individual worksheet?
>>
>> If that's not clear, let's say on sheet 1 I want A1 to be tied to A2
>> on sheet 2. If I change sheet1 A1 I want sheet2 A2 to change to the
>> same value. Likewise if I change A2 on sheet 2 I want sheet1 A1 to
>> take the same value.
>>

>
>



 
Reply With Quote
 
Peo Sjoblom
Guest
Posts: n/a
 
      28th Sep 2007
No it's not moot nor is it a circular reference


--

Regards,

Peo Sjoblom





"Wondering" <(E-Mail Removed)> wrote in message
news:FK_Ki.52604$(E-Mail Removed)...
>I think the point is moot. It is a circular reference.
>
> "Earl Kiosterud" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Ross,
>>
>> Two possibilities. First, put the value in one cell only, like Sheet1
>> A1, and have the others linked to it. In other cells, you would have:
>> ='Sheet1'!A1
>> You would change only Sheet1 A1. The links (formulas) must remain in the
>> other cells.
>>
>> If you need to be able to change any of the cells, and have the others
>> follow, then you need to have event macros that fire when a sheet is
>> changed, examine which cell was changed, and if it's one of those we care
>> about, write that value into all the other cells.
>> --
>> Regards from Virginia Beach,
>>
>> Earl Kiosterud
>> www.smokeylake.com
>>
>> Note: Top-posting has been the norm here.
>> Some folks prefer bottom-posting.
>> But if you bottom-post to a reply that's
>> already top-posted, the thread gets messy.
>> When in Rome...
>> -----------------------------------------------------------------------
>> "Ross Mau" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>>I have an excel workbook with multiple worksheets. How do I create a
>>> cell on each of the pages such that if I change it on any one sheet, I
>>> will get that value in the cell I want on each individual worksheet?
>>>
>>> If that's not clear, let's say on sheet 1 I want A1 to be tied to A2
>>> on sheet 2. If I change sheet1 A1 I want sheet2 A2 to change to the
>>> same value. Likewise if I change A2 on sheet 2 I want sheet1 A1 to
>>> take the same value.
>>>

>>
>>

>
>



 
Reply With Quote
 
Peo Sjoblom
Guest
Posts: n/a
 
      28th Sep 2007
I apologize Wondering, it was sloppy reading on my part, of course it is
circular reference if one uses formulas


--

Regards,

Peo Sjoblom





"Peo Sjoblom" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> No it's not moot nor is it a circular reference
>
>
> --
>
> Regards,
>
> Peo Sjoblom
>
>
>
>
>
> "Wondering" <(E-Mail Removed)> wrote in message
> news:FK_Ki.52604$(E-Mail Removed)...
>>I think the point is moot. It is a circular reference.
>>
>> "Earl Kiosterud" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Ross,
>>>
>>> Two possibilities. First, put the value in one cell only, like Sheet1
>>> A1, and have the others linked to it. In other cells, you would have:
>>> ='Sheet1'!A1
>>> You would change only Sheet1 A1. The links (formulas) must remain in
>>> the other cells.
>>>
>>> If you need to be able to change any of the cells, and have the others
>>> follow, then you need to have event macros that fire when a sheet is
>>> changed, examine which cell was changed, and if it's one of those we
>>> care about, write that value into all the other cells.
>>> --
>>> Regards from Virginia Beach,
>>>
>>> Earl Kiosterud
>>> www.smokeylake.com
>>>
>>> Note: Top-posting has been the norm here.
>>> Some folks prefer bottom-posting.
>>> But if you bottom-post to a reply that's
>>> already top-posted, the thread gets messy.
>>> When in Rome...
>>> -----------------------------------------------------------------------
>>> "Ross Mau" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>>I have an excel workbook with multiple worksheets. How do I create a
>>>> cell on each of the pages such that if I change it on any one sheet, I
>>>> will get that value in the cell I want on each individual worksheet?
>>>>
>>>> If that's not clear, let's say on sheet 1 I want A1 to be tied to A2
>>>> on sheet 2. If I change sheet1 A1 I want sheet2 A2 to change to the
>>>> same value. Likewise if I change A2 on sheet 2 I want sheet1 A1 to
>>>> take the same value.
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Earl Kiosterud
Guest
Posts: n/a
 
      28th Sep 2007
Hi guys,

I'm not sure why this circular reference issue has come under my post. My formula
suggestion is to have all the other cells all refer to one cell, then change the data only
in that one cell. There's no circular reference there.
--
Regards from Virginia Beach,

Earl Kiosterud
www.smokeylake.com

Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
"Peo Sjoblom" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
>I apologize Wondering, it was sloppy reading on my part, of course it is circular reference
>if one uses formulas
>
>
> --
>
> Regards,
>
> Peo Sjoblom
>
>
>
>
>
> "Peo Sjoblom" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> No it's not moot nor is it a circular reference
>>
>>
>> --
>>
>> Regards,
>>
>> Peo Sjoblom
>>
>>
>>
>>
>>
>> "Wondering" <(E-Mail Removed)> wrote in message
>> news:FK_Ki.52604$(E-Mail Removed)...
>>>I think the point is moot. It is a circular reference.
>>>
>>> "Earl Kiosterud" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> Ross,
>>>>
>>>> Two possibilities. First, put the value in one cell only, like Sheet1 A1, and have the
>>>> others linked to it. In other cells, you would have:
>>>> ='Sheet1'!A1
>>>> You would change only Sheet1 A1. The links (formulas) must remain in the other cells.
>>>>
>>>> If you need to be able to change any of the cells, and have the others follow, then you
>>>> need to have event macros that fire when a sheet is changed, examine which cell was
>>>> changed, and if it's one of those we care about, write that value into all the other
>>>> cells.
>>>> --
>>>> Regards from Virginia Beach,
>>>>
>>>> Earl Kiosterud
>>>> www.smokeylake.com
>>>>
>>>> Note: Top-posting has been the norm here.
>>>> Some folks prefer bottom-posting.
>>>> But if you bottom-post to a reply that's
>>>> already top-posted, the thread gets messy.
>>>> When in Rome...
>>>> -----------------------------------------------------------------------
>>>> "Ross Mau" <(E-Mail Removed)> wrote in message
>>>> news:(E-Mail Removed)...
>>>>>I have an excel workbook with multiple worksheets. How do I create a
>>>>> cell on each of the pages such that if I change it on any one sheet, I
>>>>> will get that value in the cell I want on each individual worksheet?
>>>>>
>>>>> If that's not clear, let's say on sheet 1 I want A1 to be tied to A2
>>>>> on sheet 2. If I change sheet1 A1 I want sheet2 A2 to change to the
>>>>> same value. Likewise if I change A2 on sheet 2 I want sheet1 A1 to
>>>>> take the same value.
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Peo Sjoblom
Guest
Posts: n/a
 
      28th Sep 2007
Sorry about that Earl, I responded to a post that was responding to you but
I then read the OP's first post thus I retracted it . It is definitely clear
that your solution is not a circular reference so my first post should have
stood


--


Regards,


Peo Sjoblom



"Earl Kiosterud" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi guys,
>
> I'm not sure why this circular reference issue has come under my post. My
> formula suggestion is to have all the other cells all refer to one cell,
> then change the data only in that one cell. There's no circular reference
> there.
> --
> Regards from Virginia Beach,
>
> Earl Kiosterud
> www.smokeylake.com
>
> Note: Top-posting has been the norm here.
> Some folks prefer bottom-posting.
> But if you bottom-post to a reply that's
> already top-posted, the thread gets messy.
> When in Rome...
> -----------------------------------------------------------------------
> "Peo Sjoblom" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>>I apologize Wondering, it was sloppy reading on my part, of course it is
>>circular reference if one uses formulas
>>
>>
>> --
>>
>> Regards,
>>
>> Peo Sjoblom
>>
>>
>>
>>
>>
>> "Peo Sjoblom" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> No it's not moot nor is it a circular reference
>>>
>>>
>>> --
>>>
>>> Regards,
>>>
>>> Peo Sjoblom
>>>
>>>
>>>
>>>
>>>
>>> "Wondering" <(E-Mail Removed)> wrote in message
>>> news:FK_Ki.52604$(E-Mail Removed)...
>>>>I think the point is moot. It is a circular reference.
>>>>
>>>> "Earl Kiosterud" <(E-Mail Removed)> wrote in message
>>>> news:(E-Mail Removed)...
>>>>> Ross,
>>>>>
>>>>> Two possibilities. First, put the value in one cell only, like Sheet1
>>>>> A1, and have the others linked to it. In other cells, you would have:
>>>>> ='Sheet1'!A1
>>>>> You would change only Sheet1 A1. The links (formulas) must remain in
>>>>> the other cells.
>>>>>
>>>>> If you need to be able to change any of the cells, and have the others
>>>>> follow, then you need to have event macros that fire when a sheet is
>>>>> changed, examine which cell was changed, and if it's one of those we
>>>>> care about, write that value into all the other cells.
>>>>> --
>>>>> Regards from Virginia Beach,
>>>>>
>>>>> Earl Kiosterud
>>>>> www.smokeylake.com
>>>>>
>>>>> Note: Top-posting has been the norm here.
>>>>> Some folks prefer bottom-posting.
>>>>> But if you bottom-post to a reply that's
>>>>> already top-posted, the thread gets messy.
>>>>> When in Rome...
>>>>> -----------------------------------------------------------------------
>>>>> "Ross Mau" <(E-Mail Removed)> wrote in message
>>>>> news:(E-Mail Removed)...
>>>>>>I have an excel workbook with multiple worksheets. How do I create a
>>>>>> cell on each of the pages such that if I change it on any one sheet,
>>>>>> I
>>>>>> will get that value in the cell I want on each individual worksheet?
>>>>>>
>>>>>> If that's not clear, let's say on sheet 1 I want A1 to be tied to A2
>>>>>> on sheet 2. If I change sheet1 A1 I want sheet2 A2 to change to the
>>>>>> same value. Likewise if I change A2 on sheet 2 I want sheet1 A1 to
>>>>>> take the same value.
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
I need to divide multiple cells by a single control cell in order. LRM Microsoft Excel Worksheet Functions 2 16th Sep 2009 06:03 AM
Creating a variable based on multiple cells Jafo1968 Microsoft Access Macros 1 9th Aug 2008 10:53 PM
Control + Shift + Up/Down not allowing me to select multiple cells. Bryan.Cook@gmail.com Microsoft Excel Misc 1 5th Apr 2007 02:31 PM
Sum cells based on a row variable and seperate column variable =?Utf-8?B?Q2hlZXNlSGVhZFRyYW5zcGxhbnQ=?= Microsoft Excel Worksheet Functions 10 23rd Sep 2005 06:59 PM
Cells.Find > error Object variable or With block variable not set Peter Microsoft Excel Programming 2 8th May 2004 02:15 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:55 AM.