ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Insert macro into formula (https://www.excelbanter.com/excel-worksheet-functions/25947-insert-macro-into-formula.html)

Paul

Insert macro into formula
 
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!

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.




--
HTH

Bob Phillips

"Paul" wrote in message
...
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!





All times are GMT +1. The time now is 04:55 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com