Thread
:
Delete Row if Value in Column L equals zero
View Single Post
#
2
Posted to microsoft.public.excel.programming
Luc[_3_]
external usenet poster
Posts: 24
Delete Row if Value in Column L equals zero
lastrow = Cells(Rows.count, "A").End(xlUp).Row
Set myrange = Range("L1:L" & lastrow)
For Each count In myrange
If count.Value = "0" Then
count.EntireRow.Delete
End If
Next
Reply With Quote
Luc[_3_]
View Public Profile
Find all posts by Luc[_3_]