Option Explicit
Sub DelAC()
Dim rng As Range, rng2 As Range, c As Range
Dim lrA As Long, lrC As Long
lrA = Range("A" & Rows.Count).End(xlUp).Row
lrC = Range("C" & Rows.Count).End(xlUp).Row
Set rng = Range("A1:A" & lrA)
Set rng2 = Range("C1:C" & lrC)
Application.ScreenUpdating = False
For Each c In rng
If c < 0.01 Then
c.Delete
End If
Next c
For Each c In rng2
If c < 0.01 Then
c.Delete
End If
Next c
Application.ScreenUpdating = True
MsgBox "complete"
End Sub
Sub kd_123()
With Range("A2", Range("A" & Rows.Count).End(xlUp))
.Value = Evaluate("if(" & .Address & "<0.01,true," & .Address & ")")
On Error Resume Next
.SpecialCells(xlConstants, xlLogical).Delete xlUp
On Error GoTo 0
End With
With Range("C2", Range("C" & Rows.Count).End(xlUp))
.Value = Evaluate("if(" & .Address & "<0.01,true," & .Address & ")")
On Error Resume Next
.SpecialCells(xlConstants, xlLogical).Delete xlUp
On Error GoTo 0
End With
End Sub