kingcashandcarry
Member
Hello
this code hides rows that in c column the value is 0
i want the c.value to be between -1 and +1
i tried some things but fails any help?
this code hides rows that in c column the value is 0
i want the c.value to be between -1 and +1
i tried some things but fails any help?
Code:
Sub HideRowelypol()
Application.ScreenUpdating = False
Application.Calculation = xlManual
For Each c In Range("c2:c1199")
If c.Value = 0 Then Rows(c.Row).Hidden = True
Next
Application.Calculation = xlAutomatic
Application.ScreenUpdating = True
End Sub
Last edited by a moderator: