When I run the following macro, it captures the column label in Row 2 even though it is supposed to Step to 3.
Any ideas why or what I can do to fix it?
Sub LimitData
Dim k As Long, l As Long
k = Range(“I3000”).End(xlUp).Row
For l = k To 3 Step -1
If IsEmpty(Range(“M” & l)) Then
Range(“M” & l).Value =0
End If
Next l
End Sub