Code Optimisation (Find and Delete)

applebyd

Active Member
Joined
May 27, 2002
Messages
348
Good Morning all....

Got an odd one in that what I have is working, just not well....

I have a sheet with two columns and 100k plus records

Col A contains a text description that is fetched by a VBA Cut and Paste from another sheet.

In ColB I have automated a COUNTIF to copy from Row2 down to a variable called ENDROW.
This then calculates the COUNTIF, copies the data, pastes back as values and sorts first on ColB then ColA.

What I need to do is remove all rows where ColB >=2

I have the below, which works, but, it is VERY VERY slow.
<I>
Sub Delete_Extra_Rows()

Sheets("Lists").Select

Application.Calculation = xlCalculationManual

Set WS = ActiveSheet

For i = Cells.SpecialCells(xlLastCell).Row To 1 Step -1

If WS.Cells(i, 1).Value > 1 Then WS.Cells(i, 1).EntireRow.Delete


Next i

Application.Calculation = xlCalculationAutomatic

END SUB

</I>

Does anyone have any ideas how this could be improved, or, am I stuck with the time?

Any help appreciated.

Regards

DaveA
 

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"
Hi, is this any quicker..

Code:
Sub Delete_Extra_Rows()
Application.Calculation = xlCalculationManual
With Sheets("List").Range("A1").CurrentRegion
    .AutoFilter Field:=2, Criteria1:=">=2", Operator:=xlAnd
    .Offset(1).SpecialCells(xlVisible).EntireRow.Delete
    .AutoFilter
End With
Application.Calculation = xlCalculationAutomatic
End Sub
 
Upvote 0
Hi, is this any quicker..

Code:
Sub Delete_Extra_Rows()
Application.Calculation = xlCalculationManual
With Sheets("List").Range("A1").CurrentRegion
    .AutoFilter Field:=2, Criteria1:=">=2", Operator:=xlAnd
    .Offset(1).SpecialCells(xlVisible).EntireRow.Delete
    .AutoFilter
End With
Application.Calculation = xlCalculationAutomatic
End Sub



Thanks.....

It's giving me a Subscript out of range error (9) here:

With Sheets("List").Range("A1").CurrentRegion

Any ideas?

But many thanks for the speed of the response.

Regards

DaveA
 
Upvote 0
It's giving me a Subscript out of range error (9) here:

With Sheets("List").Range("A1").CurrentRegion

Hi, sorry, try to change "List" to "Lists" - this should be the name of the sheet that contains your data.
 
Upvote 0
DaveA,

So I didn't fully understand your description but I think I understood your code. Typically working with arrays will be faster than ranges and cells; you might consider the following...

Code:
Sub DeleteRows_1027867()
With Application
    .ScreenUpdating = False
    .Calculation = xlCalculationManual
End With
Dim ws As Worksheet
Dim arr1 As Variant, arr2 As Variant
Dim i As Long, j As Long
Dim rng As Range

Set ws = Sheets("Lists")
Set rng = ws.Range("A2:B" & ws.Cells(Rows.Count, "A").End(xlUp).Row)
arr1 = rng
ReDim arr2(1 To rng.Rows.Count, 1 To 2)
j = 1

For i = LBound(arr1) To UBound(arr1)
    If arr1(i, 1) <= 1 Then
        arr2(j, 1) = arr1(i, 1)
        arr2(j, 2) = arr1(i, 2)
        j = j + 1
    End If
Next i

rng.Value = arr2
With Application
    .ScreenUpdating = True
    .Calculation = xlCalculationAutomatic
End With
End Sub

Cheers,

tonyyy
 
Upvote 0
Hi, sorry, try to change "List" to "Lists" - this should be the name of the sheet that contains your data.


AARGHHH.......

I *SHOULD* have spotted that!

Thanks, two different approaches, both blisteringly fast.

Learned a lot from this!

Again, thanks both

Regards

DaveA
 
Upvote 0
Just pointing out, the description in your original post states...

What I need to do is remove all rows where ColB >=2

...which is different than this line in your code...

Code:
[I]If WS.Cells(i, 1).Value > 1 Then WS.Cells(i, 1).EntireRow.Delete[/I]

And since you said your code works, that's why I chose to follow your code rather than your description.

Oh, and you're very welcome.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,340
Messages
6,124,386
Members
449,155
Latest member
ravioli44

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