> You need the Calculate Event, not the Change Event.
>
[quoted text clipped - 21 lines]
> > End If
> > End Sub
Private Sub Worksheet_Calculate()
If Range("C7").Value <= 0 Then
Cells(7, 3).EntireRow.Hidden = True
Else
Cells(7, 3).EntireRow.Hidden = False
End If
End Sub
This replaces your other macro

Signature
Gary''s Student - gsnu200760
> Hi Gary,
>
[quoted text clipped - 25 lines]
> > > End If
> > > End Sub
swiftcode - 09 Dec 2007 08:07 GMT
Hi Gary,
It works great. Thank you very much for your help.
Rgds
SC
> Private Sub Worksheet_Calculate()
> If Range("C7").Value <= 0 Then
[quoted text clipped - 35 lines]
> > > > End If
> > > > End Sub