Delete rows that don't contain '+' or '++'

E

esexcel

My excel file has multiple rows and columns.
I need to delete all the rows that don't have at least
one cell with "+" or "++"
I would appreciate any sample VB code

Thank yo
 
R

Ron de Bruin

Hi esexcel

Try this one for row 1 -100

Sub Example2()
Dim Lrow As Long
Dim CalcMode As Long
Dim StartRow As Long
Dim EndRow As Long
With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
.ScreenUpdating = False
End With

With ActiveSheet
.DisplayPageBreaks = False
StartRow = 1
EndRow = 100
For Lrow = EndRow To StartRow Step -1
If Application.WorksheetFunction.CountIf(.Rows(Lrow), "*+*") = 0 _
Then .Rows(Lrow).Delete
Next
End With
With Application
.ScreenUpdating = True
.Calculation = CalcMode
End With
End Sub
 
E

esexcel

Thanks Ron

It worked!

However, I need only to display these values "+" "++" and "+++"
The way that the code is it also displays "+-"
What should I do?

Thanks agai
 
E

esexcel

Hi Ron

Nevermind. I replaced the +- values with something else, that way I ca
run the script without modifying it

Thank
 
Top