Hello everyone, this is my first time posting on this forum however I will try to keep this as succinct as I can. My problem is this;
I have a workbook with 46 worksheets in it, on the first worksheet I have radio buttons to activate/de-activate each worksheet in the workbook. I also have one set of options buttons to turn all tabs on and then off with one click.

The issue is, when I have specific tabs activated and utilize the "deactivate_all" radio button the rest of the options buttons do not reset to the "off" position. So, for example, let’s say I have my SSA tab and my PWGSC tab activated while the rest are deactivated. When I use the "deactivate_all" radio button the tabs disappear as required however the radio button for SSA and PWGSC remain in the “on” position.

Can someone please identify how I can fix this? Each radio button runs a macro to activate or deactivate the tab using the following code:

Sub unhide_SSA_tab()
' Sheet6.Visible = True
End Sub
Sub hide_SSA_tab()
' Sheet6.Visible = False
End Sub

Also, each set of radio buttons is in it's own group box.