Use Below VBA Code to Delete Multiple Rows in MS Excel from your active worksheet
Sub DeleteRows()
'Delete the Row 2 and 4 in active worksheet
Rows("2:2,4:4").Select
Selection.Delete Shift:=xlUp
End Sub
Sub DeleteRows()
'Delete the Row 2 and 4 in active worksheet
Rows("2:2,4:4").Select
Selection.Delete Shift:=xlUp
End Sub
No comments:
Post a Comment