worksheet Event Code
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
Dim LR As Long, Ro As Long, TRos As Long
Dim Cel As Range
LR = Range("A" & Rows.Count).End(xlUp).Row
If Not Intersect(Range(Target.Address), Range("$1:$" & LR)) Is Nothing Then
Ro = Target.Row
TRos = Target.Rows.Count
For Each Cel In Range("C" & Ro - 1 & ":M" & Ro - 1)
If Cel.HasFormula Then Cel.Copy Range(Cel.Offset(1, 0), Cel.Offset(TRos, 0))
Next Cel
End If
Application.EnableEvents = True
End Sub
Worksheetevent
To paste the code
Right click on Sheet tab --> view code
Visual Basic (VB) window opens.
Paste the code
Close the VB window.
Bookmarks