Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
Radio Buttons Created Dynamically
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Dave Peterson, post: 6350935"] I would put a button (not an optionbutton!) from the forms toolbar on the sheet (near the optionbuttons???). Assign it this macro: Option Explicit Sub ResetAll() Dim OptBtn As OptionButton With ActiveSheet .Cells.Interior.ColorIndex = xlNone For Each OptBtn In .OptionButtons OptBtn.Value = False Next OptBtn End With End Sub It'll turn off all the optionbuttons you have on the worksheet. The code will need to be modified if that's a problem. [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Programming
Radio Buttons Created Dynamically
Top