I want to execute some code if any of the cells within a ranges of cells changes.
I am aware of the following code to do this for a single cell
but I'm not sure how to implement into a range so that a cell 2 columns to the left of the changed cell is amended.
Thanks
I am aware of the following code to do this for a single cell
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$D$10" Then
'further code
Thanks