> Some clarification is needed. Perhaps you want to hide all cells in a larger
> range if they have the same text as cell a16?
[quoted text clipped - 22 lines]
> > Next rCell
> > End Sub
then try this to hide row 16 when cell a15 changes
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$A$15" Then Exit Sub
If UCase(Target) = "NONE" Then
Rows(16).Hidden = True
Else
Rows(16).Hidden = False
End If
End Sub

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> Don,
> Cell A16 is linked to another cell which is always visible, so when the
[quoted text clipped - 33 lines]
>> > Next rCell
>> > End Sub
plantechbl@earthlink.net - 15 Dec 2006 15:05 GMT
Don,
I got it to work fine if I use the value in the data entry cell C15
(and I have Undo back again).
My final code looks like this:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$C$15" Then Exit Sub
If UCase(Target) = "NONE" Then
Rows(16).Hidden = True
'Rows(18).Hidden = True
Else
Rows(16).Hidden = False
'Rows(18).Hidden = False
End If
End Sub
Thank you very much for your help,
Bill
> then try this to hide row 16 when cell a15 changes
>
[quoted text clipped - 48 lines]
> >> > Next rCell
> >> > End Sub
Don Guillett - 15 Dec 2006 15:24 GMT
Glad to help

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> Don,
> I got it to work fine if I use the value in the data entry cell C15
[quoted text clipped - 68 lines]
>> >> > Next rCell
>> >> > End Sub