Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to link two cells and when you update one it updates the other

Is it possible to link two cells and when you update one it automatically
updates the other?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default How to link two cells and when you update one it updates the other

There is no need to multi-post in these newgroups..

---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 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
How to link cells and when you update one it updates the other b46ygurl Excel Discussion (Misc queries) 2 August 26th 09 04:41 PM
Update link cells without open up source document files patty Excel Worksheet Functions 1 February 15th 08 09:25 PM
Link two cells to automatically update Nathan Excel Discussion (Misc queries) 11 July 26th 06 08:20 PM
How do I link a row of cells in wks 1 to update diff cells wks 2 Andy Excel Worksheet Functions 1 February 10th 06 04:27 PM
Link Updates joeeng Links and Linking in Excel 1 December 10th 05 12:04 AM


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