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

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
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,215,734
Messages
6,126,544
Members
449,316
Latest member
sravya

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