View Single Post
  #5   Report Post  
Dave Peterson
 
Posts: n/a
Default

You could record a macro when you did the filtering and deleting to get your
code.

or looping (like Don's second suggestion):

Option Explicit
Sub testme()

Dim FirstRow As Long
Dim LastRow As Long
Dim iRow As Long

With Worksheets("sheet1")
FirstRow = 2 'headers in 1???
LastRow = .Cells(.Rows.Count, "B").End(xlUp).Row
For iRow = LastRow To FirstRow Step -1
If UCase(.Cells(iRow, "B").Value) = UCase("ESSO PRODUITS") Then
.Rows(iRow).Delete
End If
Next iRow
End With

End Sub



Jean-Francois wrote:

Ok manually, but in a macro how would do that?

"Don Guillett" wrote:

You can use datafilterautofilterfilter on that column for that value
OR
a for/each macro to look, bottom up, for the value and then
..entirerow.delete

--
Don Guillett
SalesAid Software

"Jean-Francois" wrote in message
...
Hi, Im trying to delete row that contains specific expression like:

In row 444 column b contents (ESSO PRODUITS) i want to delete that row but

i
have more then one row to find and delete.





--

Dave Peterson