View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
vezerid
 
Posts: n/a
Default automatically hide row if cell contains asterisk

djarcadian

IF what you want is to hide the row as soon as an asterisk is entered,
then you need to use the Worksheet_Change macro.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Value = "*" Then
Target.EntireRow.Hidden = True
End If
End Sub

Does this work for you?

Kostis Vezerides