jamescooper
Well-known Member
- Joined
- Sep 8, 2014
- Messages
- 840
Hello,
So I am looking for the most efficient way using VBA worksheet_change to track cell changes and populate into a column.
So say I have cells A1 and A2, when either of them change I want to populate it into another column, say C and D.
I will have quite a few of these so looking for the most efficient code under this:
Many thanks.
So I am looking for the most efficient way using VBA worksheet_change to track cell changes and populate into a column.
So say I have cells A1 and A2, when either of them change I want to populate it into another column, say C and D.
I will have quite a few of these so looking for the most efficient code under this:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Many thanks.