Sub zrušeníRadku()
Application.ScreenUpdating = False
BRad = ActiveCell.Row
PRad = Selection.Rows.Count
ERad = PRad + BRad
Range(Cells(ERad, 1), Cells(64000, 1)).EntireRow.Delete
Range(Cells(1, 1), Cells(BRad - 1, 1)).EntireRow.Delete
Range("A1").Select
Application.ScreenUpdating = True
End Sub
citovat