I have this code, but I think it's a bit slow, is there another approach to do the same thing quickly?
Sub Filtrar()
Application.ScreenUpdating = False
For x = 2 To 201
If Cells(x, 8).Value = "" Then Cells(x, 8).EntireRow.Hidden = True
Next x
Application.ScreenUpdating...