Hello!
Is there a way to automatically hide a row when specific data is entered into a cell in that row?
At the moment i'm using the following:
Sub HideNO()
Dim cl As Range
For Each cl In Range("AI14:AI900")
If cl.Value = "No" Then
cl.EntireRow.Hidden = True
End If
Next
End Sub
But my supervisor wants it to be even simpler to "minimize the chances of human error"
Any help would be greatly appreciated!
Cheers
Is there a way to automatically hide a row when specific data is entered into a cell in that row?
At the moment i'm using the following:
Sub HideNO()
Dim cl As Range
For Each cl In Range("AI14:AI900")
If cl.Value = "No" Then
cl.EntireRow.Hidden = True
End If
Next
End Sub
But my supervisor wants it to be even simpler to "minimize the chances of human error"
Any help would be greatly appreciated!
Cheers