Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. Any help would be greatly appreciated. Thanks, Ken Ivins |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi,
if you have done it in access then you have done it in excel. just put the code in the workbooks on open event. -----Original Message----- 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. Any help would be greatly appreciated. Thanks, Ken Ivins . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Well 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. Ken wrote in message ... hi, if you have done it in access then you have done it in excel. just put the code in the workbooks on open event. -----Original Message----- 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. Any help would be greatly appreciated. Thanks, Ken Ivins . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula to point to another cell if an option is chosen. | Excel Worksheet Functions | |||
macro for button option | Excel Discussion (Misc queries) | |||
validate an option is chosen | Excel Programming | |||
macro for timestamp option button | Excel Programming | |||
User Option to save to chosen destination | Excel Programming |