Worksheet_Change - Form Event

exceluser2007

Active Member
Joined
Nov 21, 2007
Messages
365
Hi All,

I have a simple Event change query.

basically, I have a drop down "form toolbar" validation selection. When I "Shift + select", the name of this form is "Drop Down 60"

I want to have a bit of Event code that will:

Code:
    Call pvt_table_setup_indiv("Risk Factor", "Risk Factor Chart")
     Call color_indiv("Risk Factor", "Risk Factor Chart")

If this selection "Drop Down 60" form is changed.

Any ideas on how to do this are appreciated.

Thanks
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hi All,

I have a simple Event change query.

basically, I have a drop down "form toolbar" validation selection. When I "Shift + select", the name of this form is "Drop Down 60"

I want to have a bit of Event code that will:

Code:
    Call pvt_table_setup_indiv("Risk Factor", "Risk Factor Chart")
     Call color_indiv("Risk Factor", "Risk Factor Chart")

If this selection "Drop Down 60" form is changed.

Any ideas on how to do this are appreciated.

Thanks

The PSEODOCODE of what I am looking for is:

Code:
Private Sub Worksheet_Change(ByVal Target As [B]DROPDOWNFORM[/B])
     
    If Not Intersect(Target, [B]DROPDOWNFORM Named "Drop Down 60"[/B]) Is Nothing Then
         
         Call pvt_table_setup_indiv("Risk Factor", "Risk Factor Chart")
         Call color_indiv("Risk Factor", "Risk Factor Chart")
        
    End If

End Sub

I don't know the syntax of referencing the Form event though.
 
Upvote 0

Forum statistics

Threads
1,213,561
Messages
6,114,315
Members
448,564
Latest member
ED38

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