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.
>