我在excel中有以下列
Sales Record Number
5100
5275
5310
5355
5357
5359
15
Seller ID: 233
我需要 VBA 代码只显示大于 5000 的行,因此应该删除“销售记录号”、“15”和“卖家 ID”。
我尝试了以下方法:
Sub DeleteRows()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Dim i As Long
For i = Range("A" & Rows.Count).End(xlUp).Row To 1 Step -1
If Not (Range("C" & i).Value < 5000) Then
Range("C" & i).EntireRow.Delete
End If
Next i
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub