Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do I create a series of check boxes that when you check the second box,
the first box will automatically uncheck? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Private Sub CheckBox1_Change()
If CheckBox1 = True Then CheckBox2 = False End If End Sub Private Sub CheckBox2_Change() If CheckBox2 = True Then CheckBox1 = False End If End Sub -- Hope this helps. Thanks in advance for your feedback. Gary Brown "Ailsa02" wrote: How do I create a series of check boxes that when you check the second box, the first box will automatically uncheck? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Gary,
You are soooo the man! Thank you! That worked perfectly! Ailsa "Gary Brown" wrote: Private Sub CheckBox1_Change() If CheckBox1 = True Then CheckBox2 = False End If End Sub Private Sub CheckBox2_Change() If CheckBox2 = True Then CheckBox1 = False End If End Sub -- Hope this helps. Thanks in advance for your feedback. Gary Brown "Ailsa02" wrote: How do I create a series of check boxes that when you check the second box, the first box will automatically uncheck? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a group of check boxes that if you click on one I want to increase a
series of discounts offered and when you uncheck it reverts back to the original data. The trick is that I have 10 choices that I want to increase or decrease based on the accumulation of boxes checked and if none are checked it goes back to my original data. Any ideas? -- Ggraves "Gary Brown" wrote: Private Sub CheckBox1_Change() If CheckBox1 = True Then CheckBox2 = False End If End Sub Private Sub CheckBox2_Change() If CheckBox2 = True Then CheckBox1 = False End If End Sub -- Hope this helps. Thanks in advance for your feedback. Gary Brown "Ailsa02" wrote: How do I create a series of check boxes that when you check the second box, the first box will automatically uncheck? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Use option buttons. This is their normal behavior.
-- Biff Microsoft Excel MVP "Ailsa02" wrote in message ... How do I create a series of check boxes that when you check the second box, the first box will automatically uncheck? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Question to check the conditions and then print the result. | New Users to Excel | |||
IF(?) logic question | Excel Discussion (Misc queries) | |||
Logic formatting question | Excel Discussion (Misc queries) | |||
Count logic question | Excel Discussion (Misc queries) | |||
Logic question | Excel Discussion (Misc queries) |