The way I do it is I have each radio button linked to their own cell. Than on the first radio button that is to be clicked and therefore determins what other option buttons need to be selected I added the following code to the first option button:
Private Sub Optionbutton1_Click()
Worksheets("Sheet1").Cells(ROW NUMBER, COLUM NUMBER).Value = True
Worksheets("Sheet2").Cells(ROW NUMBER, COLUM NUMBER).Value = True
etc...
End Sub
The code changes the linked cell values to TRUE, this then will select the option button linked to that cell.
Hope this helps!
Bookmarks