Hi MadTodd,
You can use VBA code to do this:
Sub HideGroupBox()
Dim Sh As Worksheet
Set Sh = ActiveSheet
Sh.GroupBoxes("Group Box 1").Visible = False
End Sub
Change Group Box 1 to the name of your groupbox.
---
Regards,
Norman
"MadTodd" wrote in message
...
I am using a couple of groups of option buttons but would prefer not to
show
the actual box around the group. Is there a way to hide the outline?
|