Reputation: 577
How do I update one worksheet from another?
Let's say I have Sheet1 and Sheet2. Whatever cell I type in Sheet 1 automatically updates that specific cell in Sheet2.
Upvotes: 0
Views: 98
Reputation: 43595
In the worksheet that you write, in VBA,
create Worksheet_Change
event like this:
Private Sub Worksheet_Change(ByVal Target As Range)
Worksheets(2).Range(Target.Address) = Target
End Sub
Anything you write on the first worksheet would be present on the second one.
Upvotes: 1