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

  • Thread starter Thread starter esexcel
  • Start date Start date
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
 
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
 
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
 
Hi Ron

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

Thank
 
Thanks for your feedback
I don't have to make a example for you then
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top