Thread: Macro help
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Macro help

I think xlPart should be replaced with xlWhole.

707 should be kept
0 should be deleted.



Gord Dibben wrote:

Sub DeleteRows_With_Zero()
findstring = "0"
Set B = Columns(38).Find(What:=findstring, LookAt:=xlPart)
While Not (B Is Nothing)
B.EntireRow.Delete
Set B = Columns(38).Find(What:=findstring, LookAt:=xlPart)
Wend
End Sub

Gord Dibben MS Excel MVP

On Sat, 29 Jul 2006 09:16:35 -0400, phil2006
wrote:


Can anyone help me write a macro that deletes the entire row if the cell
in the corresponding row in column AL = "0" ?

Thanks

Phil


--

Dave Peterson