#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Linking two cells

Is it possible to link two cells (that has the same information) and when you
update one it automatically updates the other?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 204
Default Linking two cells

Say the first cell is A1 and the second cell is D1. In D1 type =A1.



"b46ygurl" wrote:

Is it possible to link two cells (that has the same information) and when you
update one it automatically updates the other?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 204
Default Linking two cells

I just realised you would probably want it to work both ways. My way only
makes d1 = a1 when a1 is changed, not the other way around as well. I don't
think I can make it work both ways. Sorry for jumping in early.

"NDBC" wrote:

Say the first cell is A1 and the second cell is D1. In D1 type =A1.



"b46ygurl" wrote:

Is it possible to link two cells (that has the same information) and when you
update one it automatically updates the other?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Linking two cells

---Using formulas you can link one cell to another. In B1 use the formula
=A1
to link B1 to A1...Any changes made to A1 will be reflected in B1

---If you are looking to reflect changes made in A1 and B1 to reflect in
both cells you will need to use a macro. Right click the sheet tab view code
and paste the below code.

Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("A1")) Is Nothing Then _
Range("B1") = Range("A1")
If Not Application.Intersect(Target, Range("B1")) Is Nothing Then _
Range("A1") = Range("B1")
Application.EnableEvents = True
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"b46ygurl" wrote:

Is it possible to link two cells (that has the same information) and when you
update one it automatically updates the other?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Linking two cells

When ever I do this the value does not stay constant. I think a better way
of explaining my problem is to tell you how I use to do what I want to do in
excel 2003.

I have a summary sheet that adds up all the monthly project expenses which
are entered on another work sheet. Sometimes another worksheet in a
different workbook. I would click on the "destination" cell 1)type the sign
= 2) then I would just click on the source cell within the same sheet, or
worksheet of same file or cell in a whole different work book.

So when ever I added hours of time on one worksheet it would update the
summary expense sheet. There's got to be a simple way of doing this.
Everytime all the cells below the updated cell change or act as if I want
them to copy a range of numbers. Please help - I got to get this new project
summary expense workbook to work.
Thanks!

"NDBC" wrote:

Say the first cell is A1 and the second cell is D1. In D1 type =A1.



"b46ygurl" wrote:

Is it possible to link two cells (that has the same information) and when you
update one it automatically updates the other?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Linking two cells

Works exactly the same in 2007

But............you may have two instances of Excel running with a workbook
open in each.

These will not communicate with each other and you can only copy values.

Close the one workbook and that instance of Excel.

Open both workbooks in the same instance/session.


Gord Dibben MS Excel MVP

On Thu, 19 Nov 2009 11:12:05 -0800, 5T4fr33d0m
wrote:

When ever I do this the value does not stay constant. I think a better way
of explaining my problem is to tell you how I use to do what I want to do in
excel 2003.

I have a summary sheet that adds up all the monthly project expenses which
are entered on another work sheet. Sometimes another worksheet in a
different workbook. I would click on the "destination" cell 1)type the sign
= 2) then I would just click on the source cell within the same sheet, or
worksheet of same file or cell in a whole different work book.

So when ever I added hours of time on one worksheet it would update the
summary expense sheet. There's got to be a simple way of doing this.
Everytime all the cells below the updated cell change or act as if I want
them to copy a range of numbers. Please help - I got to get this new project
summary expense workbook to work.
Thanks!

"NDBC" wrote:

Say the first cell is A1 and the second cell is D1. In D1 type =A1.



"b46ygurl" wrote:

Is it possible to link two cells (that has the same information) and when you
update one it automatically updates the other?


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 cells into empty cells in another worksheet Bookworm Excel Discussion (Misc queries) 6 October 14th 07 11:11 AM
linking cells cheesy Excel Discussion (Misc queries) 4 February 1st 07 12:23 PM
Linking cells Gaz Excel Discussion (Misc queries) 2 February 23rd 06 03:27 PM
Linking cells with a diffrent sheet with 2 cells Angelofdoom Excel Worksheet Functions 2 February 15th 06 04:20 PM
Linking a horizontal set of cells to a vertical sets of cells Russell-stanely Charts and Charting in Excel 2 October 21st 05 03:19 PM


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