Delete entire rows if ...: how to speed up the process?

Nelson78

Well-known Member
Joined
Sep 11, 2017
Messages
526
Office Version
  1. 2007
Hello everybody.

I have 500k rows to check.
If cell "H" is not beginning for "CODE", then delete entire row.

How You can imagine, with a such amount of rows the process takes too long.

How can I speed up? May be with a REGEX strategy?


Code:
Sub deleterows()

Dim rw As Long

    With Worksheets(1)
        For rw = .Cells(Rows.Count, "A").End(xlUp).Row To 2 Step -1
            If Not Cells(rw, "H").Value Like "CODE*" Then
                .Rows(rw).EntireRow.Delete
            End If
        Next rw
    End With

End Sub
 
Glad to hear it's working, but I've no idea why you got that error before.

It is not.

Trying a number of times, if the quantity of records is over a certain threshold, it doesn't work (it deletes everything except the header row).
 
Upvote 0

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
I've just tested on over 843,000 rows & it works fine for me.
Are you sure that the autofilter is being removed?
 
Upvote 0
I've just tested on over 843,000 rows & it works fine for me.
Are you sure that the autofilter is being removed?

I've been doing experiments with 135k rows, 12,8 MB.
Like I've said, it removes everything except the header row.
 
Upvote 0
Without access to your file I don't know why that is happening (assuming that you have cells that start with code).
 
Upvote 0
Is your version of Excel before Excel 2010?

I saved again in .xls format

Is it still in .xls format (I don't see how it could be but have to ask)?
 
Last edited:
Upvote 0
Without access to your file I don't know why that is happening (assuming that you have cells that start with code).

This way seems to work fine (sorting before for alphabetical order).

Consider:
- I've been working with xls 2007
- doing the operation manually, this alert comes up blocking the process: "Microsoft Office Excel cannot create or use the data range reference because it is too complex.Try one or more of the following: ..."



Code:
Sub delete_no_cocd()

Worksheets(1).Range("R1") = Now

Dim UsdRws As Long
    UsdRws = Worksheets(1).Range("A" & Rows.Count).End(xlUp).Row

Worksheets(1).Sort.SortFields.Clear
Worksheets(1).Sort.SortFields.Add Key:=Range( _
        "H2:H" & UsdRws), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
        xlSortNormal

    With Worksheets(1).Sort
        .SetRange Range("A1:P" & UsdRws)
        .Header = xlYes
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
    End With


   With Worksheets(1)
      If .AutoFilterMode Then .AutoFilterMode = False
      .Range("A1:H" & UsdRws).AutoFilter 8, "<>code*"
      .AutoFilter.Range.Offset(1).EntireRow.Delete
      .AutoFilterMode = False
   End With

Worksheets(1).Range("S1") = Now

End Sub
 
Upvote 0
Is your version of Excel before Excel 2010?



Is it still in .xls format (I don't see how it could be but have to ask)?

No, sorry, I wasn't clear enough: saving again, of course now is in .xlsm.

It is Excel 2007.
 
Last edited:
Upvote 0
I seem to remember that there was an issue with 2007 (similar to the old SpecialCells issue) that was remedied in 2010 which is why I asked if your version was below 2010.
When I am home I will see if I can find anything on it as because sorting seems to to have cured the issue it seems that might well be the issue.
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,039
Members
449,063
Latest member
ak94

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