Hi
Having a bit of trouble replicating this, on my fairly slow laptop, processing the ~4,500 cells takes 1.04s. It goes up to 78s if i extend it to 64000 cells.
It kind of depends what's causing the slow behaviour. If you're hiding a large no of consecutive rows, you could get it to delay the hide operation until it comes across a row that doesn't need hiding.
For my example this was the case, so the following code (which groups the rows to be hidden) produced a massive improvement
Private Sub Worksheet_Activate()
t = Timer
Application.ScreenUpdating = False
Dim c As Range, firstRow As Long, alreadyHiding As Boolean
For Each c In Range("A1:A64535")
If c.Value = 0 Then
'Rows(c.Row).Hidden = True
If Not alreadyHiding Then
firstRow = c.Row
alreadyHiding = True
End If
Else
If alreadyHiding Then Rows(firstRow & ":" & c.Row - 1).Hidden = True
Rows(c.Row).Hidden = False
alreadyHiding = False
End If
Next c
If alreadyHiding Then Rows(firstRow & ":64545").Hidden = True
tt = Timer
Debug.Print tt - t
End Sub
If you are, for example, hiding every other row then you might need to look at building a selection and hiding them all at one, I think the main aim should be to use .hidden = true as little as possible
Cheers
Mat
Bookmarks