option buttons' values = false

  • Thread starter Thread starter Spencer Hutton
  • Start date Start date
S

Spencer Hutton

i have 100 option buttons on a sheet, is there a loop that can set all of
there values to False? i can't seem to get the syntax.
 
Spencer,
try this

For i = 1 To 100
ActiveSheet.DrawingObjects("option button " & i) = False
Next i

Neil
 

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

Back
Top