Creating Mutliple Worksheet_Change Event Procedures

Sundae

New Member
Joined
Jul 25, 2011
Messages
44
Hi there, I am finding so difficult to start a new thread. My question is similar to the above. I have the following code:

Private Sub Worksheet_Change(ByVal Target As Range)
If Range("a15").Value = "Exempt" And Range("F6").Value = "Exempt" Then
Rows("19").EntireRow.Hidden = True
Rows("21").EntireRow.Hidden = True
ElseIf Range("a15").Value = "Exempt" And Range("F6").Value = "Non-exempt" Then
Rows("19").EntireRow.Hidden = False
Rows("21").EntireRow.Hidden = False
ElseIf Range("a15").Value = "Non-exempt" And Range("F6").Value = "Exempt" Then
Rows("19").EntireRow.Hidden = False
Rows("21").EntireRow.Hidden = False
End If
End Sub

I need to create a second change action, but I get ambiguous name detected vba error, where do I change my code name? Thank you!


Split from: https://www.mrexcel.com/forum/excel-questions/1068094-hiding-rows-vba-question.html
 
Last edited by a moderator:

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
To start a new thread, click the "Post New Thread" button at the upper left corner of the Forum window.
 
Upvote 0
I have moved your post to a new thread. I responded to the question you posed about posting with some questions for you, but you have not responded.

Regarding this question, you are not allowed to have multiple procedures by the same name in a single module (hence the "ambiguity" error message - if you call a macro and there are two matching with the same name, it wouldn't know which one to run).

You must put your second block of code within the same module here. Just add another IF... THEN block underneath what you have.

Note with Worksheet_Change macros, it is often common to have them only fire if certain cells are updated, so they don't needlessly run everytime a change is made (if a change is made to a whole different area that has no impact on what you are trying to do). "Target" is the range that was just updated that fires this macro. So you can check the address of target, or see if it falls within a certain range or not, and if it does, then perform your steps.
 
Upvote 0
You are welcome.

If you run into any issues combining the two, feel free to post back to this thread and we can help you out.
 
Upvote 0
Thank you for responding so quickly, so I added the two new blocks, but when I update the cell it references, the rows are not hidden. This is what I have:

Private Sub Worksheet_Change(ByVal Target As Range)
If Range("a15").Value = "Exempt" And Range("F6").Value = "Exempt" Then
Rows("19").EntireRow.Hidden = True
Rows("21").EntireRow.Hidden = True
ElseIf Range("a15").Value = "Exempt" And Range("F6").Value = "Non-exempt" Then
Rows("19").EntireRow.Hidden = False
Rows("21").EntireRow.Hidden = False
ElseIf Range("a15").Value = "Non-exempt" And Range("F6").Value = "Exempt" Then
Rows("19").EntireRow.Hidden = False
Rows("21").EntireRow.Hidden = False

ElseIf Range("a15").Value = "Exempt" Then
Rows("36:37").EntireRow.Hidden = True

ElseIf Range("a15").Value = "Non-exempt" Then
Rows("41:42").EntireRow.Hidden = True


End If
End Sub


I really appreciate your help!
 
Upvote 0
Are cells A15 and F6 hard-coded values or formulas?
Can you give me an example of one that does not work?
Tell me what cells are you updating to what value, and I will try it on your code here on my end.
 
Last edited:
Upvote 0
Cells A15 and F6 are pick lists, with only Exempt and Non-exempt as options.

These two are not working: notice that these two are only referencing one cell a15

ElseIf Range("a15").Value = "Exempt" Then
Rows("36:37").EntireRow.Hidden = True

ElseIf Range("a15").Value = "Non-exempt" Then
Rows("41:42").EntireRow.Hidden = True


Thanks again
 
Upvote 0
It seems to work fine for me.
Note that the way you have your code written, those will ONLY work if the value in F6 is blank (i.e. F6 is NOT "Exempt" or Non-exempt").
Can you confirm that F6 is blank in those situations?
 
Upvote 0

Forum statistics

Threads
1,223,920
Messages
6,175,378
Members
452,638
Latest member
Oluwabukunmi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top