Use Formula with =$A5=10 and apply White Font White Background
2. Write a small macro to check and hide row as appropriate.
Copy and paste this into a code page for the sheet yopu are working on
Adjust values to suit
[pre]
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim myAdd As String
Dim myVal As Double
Dim mySht As String
Dim myRow As Integer
mySht = "Sheet1" ' Change to suit
myAdd = "$A$10" ' Cell to check; Change to suit
myVal = 20 ' Check for this value; Change to suit
myRow = 10 ' Hide this row; Change to suit
If Target.Address = myAdd And Target.Value = myVal Then
Worksheets(mySht).Rows(myRow).Hidden = True
ElseIf Target.Address = myAdd And Target.Value <> myVal Then
Worksheets(mySht).Rows(myRow).Hidden = False
End If
End Sub