Option Buttons Off When Program is opened

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a worksheet with several option buttons. I would like to know how to
have all option buttons off (blank) when the worksheet is opened.

Vance
 
In "ThisWorkbook"

Private Sub Workbook_Open()
Range("A1,A3,A5").clear
End Sub

set the range to the linked cells of the option buttons
 

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