Hey if you have more than one change in a worksheet then you must name them
Code:
Private Sub Worksheet_Change1(ByVal target As Range)
The Next one Would Say:
Code:
Private Sub Worksheet_Change2(ByVal target As Range)
In order to make it read these two you must Create another code that looks like this.
Code:
Private Sub Worksheet_Change(ByVal target As Range)
Worksheet_Change1 target
Worksheet_Change2 target
End Sub
This will be the one it reads first. When it reads this one it will the work change 1 and 2. Hope this helps.