Hi
I want to adjust the following code so that it only happens when B4 is changed and not all cells in the worksheet.
VBNA
Many thanks
I want to adjust the following code so that it only happens when B4 is changed and not all cells in the worksheet.
VBNA
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
Worksheets("BREAKDOWN").Range("B4").Copy Worksheets("DATA").Range("B2")
Application.ScreenUpdating = True
End Sub
Many thanks