Jtm_Preston
New Member
- Joined
- Nov 10, 2015
- Messages
- 23
Hello . . . I have a very simple piece of VBA (below) that works perfectly well copying a line and inserting it below itself, as intended. However this doesn't work when a filter is applied. Can anyone kindly suggest a fix?
Sub WLM_Insert_A_New_Line()
ActiveCell.EntireRow.Select
Selection.Copy
ActiveCell.Offset(1).Select
Selection.Insert Shift:=xlDown
End Sub
Sub WLM_Insert_A_New_Line()
ActiveCell.EntireRow.Select
Selection.Copy
ActiveCell.Offset(1).Select
Selection.Insert Shift:=xlDown
End Sub