Userform Combo Box & Radio Button Formula

skull_eagle

Board Regular
Joined
Mar 25, 2011
Messages
89
Hi, I have a userform with 15 groups of Radio Buttons, the selection of each group runs a different calculations. It also contains a Combo Box that contains a list of percentages, the percentage selected impacts the calculations made by the radio buttons which is fine if the percentage is selected befoe the radio buttons are selected (ie the % will be taken into consideration on selecting the radio button).

The problem is - I want the new calculations run on all Radio Buttons already selected...

Is there a code I can use that on selection of a Combo Box value all Radio Buttons are called into action to run their respective codes?


Thank you
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
The easiest way to impliment this would be for each control to call a routine like

Code:
Sub UpdateEverything()
    Rem calc for group 1
    Rem calc for group 2
    ' ...
    Rem calc for group 15
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,816
Messages
6,132,869
Members
449,762
Latest member
iammikeysoft2

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