Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is it possible to link two cells and when you update one it automatically
updates the other? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to link cells and when you update one it updates the other | Excel Discussion (Misc queries) | |||
Update link cells without open up source document files | Excel Worksheet Functions | |||
Link two cells to automatically update | Excel Discussion (Misc queries) | |||
How do I link a row of cells in wks 1 to update diff cells wks 2 | Excel Worksheet Functions | |||
Link Updates | Links and Linking in Excel |