L
Legacy 219053
Guest
Hi all,
I'm a novice at Excel and VBA, but have found myself in a position where I need to execute a specific task using VBA and I would like to request some help.
I am creating a userform in a standard question and answer format. Some of the answers are dropdown menus that I created using Data Validation. In an effort to make the worksheet as simple as possible I would like to hide and unhide rows based on the answers in these dropdowns. My problem is that I have multiple places where I would like this to happen (around 15).
In the past, I have hidden rows based on cell values using:
However, I am under the assumption that one can only use one Worksheet Change Event per worksheet. If that is true, how else could I approach this issue?
I'm a novice at Excel and VBA, but have found myself in a position where I need to execute a specific task using VBA and I would like to request some help.
I am creating a userform in a standard question and answer format. Some of the answers are dropdown menus that I created using Data Validation. In an effort to make the worksheet as simple as possible I would like to hide and unhide rows based on the answers in these dropdowns. My problem is that I have multiple places where I would like this to happen (around 15).
In the past, I have hidden rows based on cell values using:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)