CHC Consulting LLC
Active Member
- Joined
- Aug 14, 2008
- Messages
- 346
This code is hanging up at the section in bold.... any thoughts?
Private Sub worksheet_change(ByVal target As Range)
'Fills in Trouble Sheet worksheet when a date is populated in TROUBLE column
If target.Column = 29 Then
Thisrow = target.Row
If target.Value <> "" Then
Worksheets("DATA").Activate
Cells(ActiveCell.Row, 3).Copy
Worksheets("Trouble Sheet").Activate
Range("A1048576").End(xlUp).Select
Selection.Offset(1, 0).Select
Selection.PasteSpecial Paste:=xlPasteValues, operation:=xlNone, skipblanks _
:=False, Transpose:=False
End If
End If
End Sub
Private Sub worksheet_change(ByVal target As Range)
'Fills in Trouble Sheet worksheet when a date is populated in TROUBLE column
If target.Column = 29 Then
Thisrow = target.Row
If target.Value <> "" Then
Worksheets("DATA").Activate
Cells(ActiveCell.Row, 3).Copy
Worksheets("Trouble Sheet").Activate
Range("A1048576").End(xlUp).Select
Selection.Offset(1, 0).Select
Selection.PasteSpecial Paste:=xlPasteValues, operation:=xlNone, skipblanks _
:=False, Transpose:=False
End If
End If
End Sub
Last edited: