Insert macro into formula

P

Paul

I would like to insert a macro into my worksheet that will hide or unhide
rows of the worksheet based on the input value of a cell.

For example, if the user enters "Y" (for yes) in a cell, I want the next two
rows below the input cell to unhide. If the user enters "N" or "N/A", I want
the next two rows to remain hidden.

Thanks!
 
B

Bob Phillips

Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("H1:H10")) Is Nothing Then
With Target
If .Value = "Y" Then
.Offset(1, 0).Resize(2).EntireRow.Hidden = False
ElseIf .Value = "N" Or .Value = "N/A" Then
.Offset(1, 0).Resize(2).EntireRow.Hidden = True
End If
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.
 
Top