Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Option Button open template false

I have a form template I have designed that will be printed occasionally to
fill in manually. I created some option buttons for this form and want it to
open every time with neither option chosen. I assume that if someone plays
with this and saves it as a template then this feature may get messed with
(users can do the darndest things).

So I thought I would like a macro that would check each option button upon
opening and uncheck it. I have done a lot of macro work in Access but not
much in Excel.
I tried

Private Sub Workbook_Open()
OptionButton59.Value = False
OptionButton60.Value = False
End Sub

But that did not work. It still opened with to Option 59 selected.

Any help would be greatly appreciated.

Thanks,
Ken Ivins


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Option Button open template false

Ken,

I've made some assumptions...

No VBA Form is being used.
Using option buttons from the "Forms" toolbar
Buttons are placed directly on a worksheet

Option buttons are designed to work as a group so that only one at
time has a value of true. You can have independent groups of option buttons
but they have to be separated using a Frame - also from the "Forms" toolbar.

Check boxes are not tied together and all or none can be true or false.

In any case, the following will work if Excel doesn't crash...
Worksheets("SheetName").Select
ActiveSheet.Shapes("Option Button 59").ControlFormat.Value = False
ActiveSheet.Shapes("Option Button 60").ControlFormat.Value = False

Regards,
Jim Cone
San Francisco, CA

----- Original Message -----
From: "Ken Ivins"
Newsgroups: microsoft.public.excel.programming
Sent: Monday, September 20, 2004 8:02 AM
Subject: Option Button open template false

I have a form template I have designed that will be printed occasionally to
fill in manually. I created some option buttons for this form and want it to
open every time with neither option chosen. I assume that if someone plays
with this and saves it as a template then this feature may get messed with
(users can do the darndest things).
So I thought I would like a macro that would check each option button upon
opening and uncheck it. I have done a lot of macro work in Access but not
much in Excel.
I tried
Private Sub Workbook_Open()
OptionButton59.Value = False
OptionButton60.Value = False
End Sub
But that did not work. It still opened with to Option 59 selected.
Any help would be greatly appreciated.
Thanks,
Ken Ivins

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Check box - true/false - i'd like a third option n/a Kelly 1st Excel Discussion (Misc queries) 6 February 24th 10 01:23 PM
Assign different macros for True/False button Ken G. Excel Discussion (Misc queries) 2 April 3rd 09 04:50 AM
TRUE/FALSE MACRO using Option Buttons Jase Excel Discussion (Misc queries) 1 March 28th 08 09:15 PM
keep source formatting is not an option in paste option button Tina Excel Discussion (Misc queries) 0 February 20th 06 09:58 PM
New button does not open the template workbook set up lucilene Excel Discussion (Misc queries) 3 July 20th 05 01:55 AM


All times are GMT +1. The time now is 12:24 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"