Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
how do i reference a forms check box in a formula (whether it is checked or
not) thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In vba use
Sub CheckBox1_Click() If checkbox3 = "False" Then MsgBox "Unchecked " Else MsgBox "Checked " End If End Sub if you want to detect its state in a worksheet formula then format the control with a linked cell. If you do this the cell will display True for checked ir false for unchecked which you can reference with your formula. "sako 338" wrote: how do i reference a forms check box in a formula (whether it is checked or not) thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I put a check mark box in an excel document form? | Excel Discussion (Misc queries) | |||
Form Fields | Excel Discussion (Misc queries) | |||
Editing a simple macro | Excel Worksheet Functions | |||
how can I make a form number change everytime the form is opened | Excel Worksheet Functions | |||
Passing variables between a form and macro | New Users to Excel |