I am trying to move cells between cols A and L to a sheet named BREAK from a sheet name FAB w/ the criteria being met "Single Rollup Frame" in col B and it being a copy/paste that will always paste on the next available row. The code I have works some and doesn't give a debug - but it is only pasting the info from cols A and B. This code is in the FAB worksheet and not in a module. Can someone help me please?
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Columns("B:B")) Is Nothing Then Exit Sub
If Target.Value = "Single Rollup Frame" Then Range(Cells(Target.Row, "A"), Cells(Target.Row, "L")).Copy _
Sheets("BREAK").Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
End Sub
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Columns("B:B")) Is Nothing Then Exit Sub
If Target.Value = "Single Rollup Frame" Then Range(Cells(Target.Row, "A"), Cells(Target.Row, "L")).Copy _
Sheets("BREAK").Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
End Sub