radio buttons

G

Guest

I have two radio button on a worksheet that I need to hide based on the value
of one of my cells. Right now I hide several rows based on this cell's value
but the radio buttons thta are positioned within that range of rows also need
ot be hidden. Here is how I'm hiding the rows:

Rows("29:40").Select
Selection.EntireRow.Hidden = False

Is there a way to also hide those radio buttons?
 
G

Guest

Try following:

ActiveSheet.OptionButtons("Option Button 2").Visible = False

Regards
reklamo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top