VBA Running slow

Rab_marr

New Member
Joined
Apr 12, 2016
Messages
24
Good afternoon everyone,

I have been playing around with some simple VBA code and come across this one in the forum that hides all rows where there is a "0" in the cells of column J:

Sub Hide()
Application.ScreenUpdating = False


Dim wks As Worksheet
Dim Lastrow As String
Dim Rng As Range
Dim cell As Range


On Error Resume Next
For Each wks In ThisWorkbook.Worksheets

With wks
wks.Select
Rows.Hidden = False
Lastrow = Range("J" & Rows.Count).End(xlUp).Row '
Set Rng = Range("J2:J" & Lastrow) 'choose column where value exists
For Each cell In Rng
If cell.Value = "0" Then 'Change the value based on which the rows need to be hidden
cell.EntireRow.Hidden = True
End If
Next cell
End With
Next wks


Application.ScreenUpdating = True
End Sub

The problem is when I run it, it can take up to 5 minutes to complete. I have guessed that perhaps the VBA is searching all 1,000,000+ rows and tried to change the range to just the 300 lines required. I also changed the criteria to search for "1" instead of "0", but with no success.

Is there something I have overlooked or is this just one of the codes that takes a while to complete?

Many thanks for any assistance that you can give

Rgds
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
if you have loads of data and formulas with automatic calculation I imagine the above is quite tasking.... hiding row by row doesn't seem optimal. try the below it should be quicker

Code:
Sub Hide_Zero()
  Dim a, b
  Dim nc As Long, i As Long
 
  nc = Cells.Find(What:="*", After:=Cells(1, 1), LookIn:=xlValues, SearchOrder:=xlByColumns, _
                SearchDirection:=xlPrevious, SearchFormat:=False).Column + 1
  a = Range("J1", Range("J" & Rows.Count).End(xlUp)).Value
  ReDim b(1 To UBound(a), 1 To 1)
  For i = 1 To UBound(a)
    If a(i, 1) = 0 Then b(i, 1) = 1
  Next i
  Application.ScreenUpdating = False
  With Range("A1").Resize(UBound(a), nc)
    .Columns(nc).Value = b
     On Error Resume Next
    .Columns(nc).SpecialCells(xlConstants).EntireRow.Hidden = True
    On Error GoTo 0
  End With
  Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,413
Messages
6,119,372
Members
448,888
Latest member
Arle8907

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