How to delete entire row based on multiple call range being blank

Darren_workforce

Board Regular
Joined
Oct 13, 2022
Messages
119
Office Version
  1. 365
Platform
  1. Windows
Hello,

Using the code below, I'm close to what I need but it's not perfect. I have a range of data (generally not going to be more than 100 rows at most). I run a macro to change any cells with '0' data to a blank cell. Afterwards, there could still be 1-2 cells in a row that still contain data. However, using the formula below, it still removes those rows and that's what I'm trying to avoid.

How would I adjust the formula (or is it the wrong formula to use) so that if a row has blank cells all the way across range C:O, that entire row will be removed and then have the remaining rows underneath moved up. But then if even 1 cell within the C:O range contains data, that row will be left alone and remain after the macro runs.

Thank you in advance!

VBA Code:
Sub DelBlankRows()

Worksheets("Raw Data").Activate

Dim i As Long, n As Long
Dim rg As Range
Application.ScreenUpdating = False
With ActiveSheet
    Set rg = Intersect(.UsedRange, .Columns("C:O"))
    n = rg.Rows.Count
    For i = n To 1 Step -1
        If Not IsError(rg.Cells(i, 1).Value) Then
            If rg.Cells(i, 1).Value = 0 Or rg.Cells(i, 1).Value = "" Then rg.Rows(i).EntireRow.Delete
        End If
    Next
End With

   End Sub
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Sorry. The full range of data goes from A:O. There will always be data in Columns A and B which is why I just want to search C:O for blank cells.
 
Upvote 0
I think you could replace this:
VBA Code:
    For i = n To 1 Step -1
        If Not IsError(rg.Cells(i, 1).Value) Then
            If rg.Cells(i, 1).Value = 0 Or rg.Cells(i, 1).Value = "" Then rg.Rows(i).EntireRow.Delete
        End If
    Next
with this:
VBA Code:
    For i = n To 1 Step -1
        Set rng = Range(Cells(i, "C"), Cells(i, "O"))
        If Application.WorksheetFunction.CountBlank(rng) = 13 Then Rows(i).Delete
    Next i
 
Upvote 0
Solution
I think you could replace this:
VBA Code:
    For i = n To 1 Step -1
        If Not IsError(rg.Cells(i, 1).Value) Then
            If rg.Cells(i, 1).Value = 0 Or rg.Cells(i, 1).Value = "" Then rg.Rows(i).EntireRow.Delete
        End If
    Next
with this:
VBA Code:
    For i = n To 1 Step -1
        Set rng = Range(Cells(i, "C"), Cells(i, "O"))
        If Application.WorksheetFunction.CountBlank(rng) = 13 Then Rows(i).Delete
    Next i
Thank you Joe4! That was exactly what was needed. Much appreciated!!
 
Upvote 0
You are welcome.
Glad I was able to help!

Hopefully, it is pretty straightforward and you can see what is going on, but let me know if you have any questions about it.
 
Upvote 0
You are welcome.
Glad I was able to help!

Hopefully, it is pretty straightforward and you can see what is going on, but let me know if you have any questions about it.
I need to take a course on advanced vba, honestly. Assigning things like ranges and such gets complicated for me. I find most of what I'm looking for online and try to tweak it but I doubt I'd ever have figured out how to adjust the range on this myself. I'd love to be able to review a code and determine what needs to take place as quickly as the pros like you.
 
Upvote 0
I need to take a course on advanced vba, honestly. Assigning things like ranges and such gets complicated for me. I find most of what I'm looking for online and try to tweak it but I doubt I'd ever have figured out how to adjust the range on this myself. I'd love to be able to review a code and determine what needs to take place as quickly as the pros like you.
I am a big fan with using Cells(row, column) instead of Range.
They really mean the same thing, but the big advantage with Cells is that for the column reference, you can use the column reference ("A", "B", "C", etc) or the column index (1,2,3).
Using the index makes it MUCH easier to loop through columns.

So
VBA Code:
Range("C8")
is the same as:
VBA Code:
Cells(8, "C")
is the same as:
VBA Code:
Cells(8, 3)

I found this write-up on dealing with Range/Cells that you might find useful: Excel VBA Range – Working with Range and Cells in VBA
 
Upvote 0
Not sure that does what you asked for. Its still only testing the first cell in the row

so that if a row has blank cells all the way across range C:O
 
Upvote 0
I am a big fan with using Cells(row, column) instead of Range.
They really mean the same thing, but the big advantage with Cells is that for the column reference, you can use the column reference ("A", "B", "C", etc) or the column index (1,2,3).
Using the index makes it MUCH easier to loop through columns.

So
VBA Code:
Range("C8")
is the same as:
VBA Code:
Cells(8, "C")
is the same as:
VBA Code:
Cells(8, 3)

I found this write-up on dealing with Range/Cells that you might find useful: Excel VBA Range – Working with Range and Cells in VBA
OK thank you. I'll check it out once I'm off for the day.
 
Upvote 0
Or maybe i missed something. Anyway id do something like:

VBA Code:
Sub DelBlankRows()

Dim i As Long, counter As Long
Dim rg As Range, arr

Application.ScreenUpdating = False
With Worksheets("Raw Data")
    Set rg = .Range("C:O")
    lr = rg.Find("*", , , , xlByRows, xlPrevious).Row
    arr = .Range("C1:O" & lr)
    For i = UBound(arr, 1) To 1 Step -1
        counter = 0
        For j = 1 To UBound(arr, 2)
            If Not IsError(arr(i, j)) Then
                If arr(i, j) = 0 Or arr(i, j) = "" Then
                    counter = counter + 1
                End If
            End If
        Next
        If counter = rg.Columns.Count Then .Rows(i).Delete Shift:=xlUp
    Next
End With
Application.ScreenUpdating = True

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,750
Members
448,989
Latest member
mariah3

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