Delete entire rows by conditions

Panoos64

Well-known Member
Joined
Mar 1, 2014
Messages
882
Hi to all of you!
Kindly require to provide me support for a VBA code so that to run through columns "O", "P", 'Q" and where the rows are blank or "0" should delete entire rows. Therefore that, the rows "1" - "7" are headings and the code should run from row "8" till rows down. Thank you all in advance. Base into all of you, i overcome my tasks in a short time and my figures are accurate.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Re: Delete entire rows by contitions

Try..Untested...

Code:
Sub MM1()
Dim lr As Long, cell As Range
lr = Cells.Find("*", , xlValues, , xlRows, xlPrevious).Row
For Each cell In Range("O8:Q" & lr)
    If cell.Value = "" Or cell.Value = 0 Then
        cell.EntireRow.Delete
    End If
Next cell
End Sub
 
Upvote 0
Re: Delete entire rows by contitions

Thank you Michael, it works but, maybe i done a mistake in my explanation on above post. The condition which code should check is that, if the all three columns "O", "P", 'Q" in a row are blank or "0" then should delete entire row. However thank you for time
 
Upvote 0
Re: Delete entire rows by contitions

About how many rows will be in your whole data?
 
Upvote 0
Re: Delete entire rows by contitions

Hi Peter, around 500 rows. Based on my below extract, the rows which should delete are 124 and 125. Thank u Peter for your interesting to resolve my issue. Hv a great day



OPQ
123150.25

124
0.00
125
0.00
126 178.29

<colgroup><col style="mso-width-source:userset;mso-width-alt:2588;width:55pt" width="73"> <col style="mso-width-source:userset;mso-width-alt:3242; width:68pt" width="91" span="3"> </colgroup><tbody>
</tbody>
 
Upvote 0
Re: Delete entire rows by contitions

Hi Peter, around 500 rows.
Thanks. That's a small number for vba processing so give this a try in a copy of your workbook.

Rich (BB code):
Sub Delete_Rows()
  Dim r As Long
  
  Application.ScreenUpdating = False
  For r = Range("O:R").Find(What:="*", LookIn:=xlValues, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row To 8 Step -1
    If Len(Replace(Join(Application.Index(Cells, r, Array(15, 16, 17)), ""), "0", "")) = 0 Then Rows(r).Delete
  Next r
  Application.ScreenUpdating = True
End Sub
 
Upvote 0
Re: Delete entire rows by contitions

Another aproch

Code:
Sub Delete_Rows()
  Dim lr As Long, i As Long, a(), r As Range
  Application.ScreenUpdating = False
  lr = ActiveSheet.UsedRange.Rows(ActiveSheet.UsedRange.Rows.Count).Row
  Set r = Range("A" & lr + 1)
  a = Range("O8:Q" & lr)
  For i = 1 To UBound(a)
    If (a(i, 1) = 0 Or a(i, 1) = "") And _
       (a(i, 2) = 0 Or a(i, 2) = "") And _
       (a(i, 3) = 0 Or a(i, 3) = "") Then
      Set r = Union(r, Range("A" & i + 7))
    End If
  Next i
  r.EntireRow.Delete
End Sub
 
Upvote 0
Re: Delete entire rows by contitions

Another possibility - (just a slight twist on Peter's method):

Code:
Option Explicit
Sub Delete_Rows()
  
    Dim lngMyRow As Long
  
    Application.ScreenUpdating = False
    
    For lngMyRow = Range("O:Q").Find(What:="*", LookIn:=xlValues, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row To 8 Step -1
        If Evaluate("SUM(O" & lngMyRow & ":Q" & lngMyRow & ")") = 0 Then Rows(lngMyRow).Delete
    Next lngMyRow
    
    Application.ScreenUpdating = True
    
End Sub

Regards,

Robert
 
Upvote 0
Re: Delete entire rows by contitions

Another possibility - (just a slight twist on Peter's method):
A couple of comments as to why I wouldn't go with that code. Although not existing in the small sample given by the OP, that would delete rows other than specified by where the rows are blank or "0" in at least these 2 circumstances:
- the row contained text values
- the row contained, for example, 3, -7, 4
 
Upvote 0
Re: Delete entire rows by contitions

Thanks Peter. I based on it what the OP posted but you are totally correct.

Regards,

Robert
 
Upvote 0

Forum statistics

Threads
1,214,587
Messages
6,120,405
Members
448,958
Latest member
Hat4Life

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top