Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am running Excel 2002. I have a Workbook with 4 worksheets. I created a
Control Option Button (OptBtn01) on Sheet1. I have a Control Check Box (ChkBx01) on Sheet4. I would like to change Control Check Box (ChkBx01) to disabled (Enabled = False) whenever the Control Option Button (OptBtn01) Value is True. Can anyone help? Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I put this under sheet1:
Option Explicit Private Sub OptBtn01_Change() Worksheets("sheet4").OLEObjects("ChkBx01").Enabled _ = CBool(Me.OptBtn01.Value = False) End Sub KHaydel wrote: I am running Excel 2002. I have a Workbook with 4 worksheets. I created a Control Option Button (OptBtn01) on Sheet1. I have a Control Check Box (ChkBx01) on Sheet4. I would like to change Control Check Box (ChkBx01) to disabled (Enabled = False) whenever the Control Option Button (OptBtn01) Value is True. Can anyone help? Thanks in advance. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Keeping Control Buttons Still | Excel Worksheet Functions | |||
Using 'Option Buttons' | Excel Discussion (Misc queries) | |||
Option Buttons | Excel Discussion (Misc queries) | |||
yes/no option buttons | Excel Discussion (Misc queries) | |||
How do I create a form in a worksheet with control option buttons. | New Users to Excel |