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...