Form Controls - Group Box

M

MaryM

Is there any way to make the group box borders invisible?
I see a setting to not print, but I dont want them visible on scree
either.

I am using Excel 2002 SP2

Thanks in advance
 
D

Dave Peterson

I don't think you can do this except via code.

Hit alt-f11 to get to the VBE
hit ctrl-G to see the immediate window

type this in and hit enter:

activesheet.groupboxes.visible = false

This hides all the groupboxes on the activesheet.
 
Top