Thread
:
Coding
View Single Post
#
1
Posted to microsoft.public.excel.programming
Ed
external usenet poster
Posts: 46
Coding
Thank you,
EJE
On Sun, 13 Aug 2006 19:29:11 -0600, "Dave Patrick"
wrote:
Here's one way;
For r = 100 To 1 Step -1
If LCase(Trim(Cells(r, 1).Text)) = "abc" Then
Cells(r & "," & r).EntireRow.Delete
End If
Next
Reply With Quote
Ed
View Public Profile
Find all posts by Ed