我有一个工作表,我经常在其中删除数据,并且我有两种方法可以删除没有标题的数据。
我想知道这两种方法中最有效,最快的方法。
Private Sub test()
Dim lastrow As Long
'preventif is my sheet
lastrow = preventif.Cells(preventif.Rows.count, "A").End(xlUp).up
'Method N°1
preventif.Cells.range("A2:Y" & lastrow + 1).Delete
'Method N°2
preventif.range("A2:Y" & preventif.Rows.count).Delete
End Sub