Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have two comboboxes set up, one dependent on the other. I have been trying to search for a solution to clear the 2nd one every time a choice is selected in the first. I have learned and seen a lot of cool things trying to search for this but still no luck clearing the 2nd combobox. I would appreciate anyone's help with this! Thank you, -Dan |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Do this in the ComboBox1 code like:
Private Sub ComboBox1_Change() ComboBox2.value = "" End Sub Corey.... "Dan" wrote in message ... Hi, I have two comboboxes set up, one dependent on the other. I have been trying to search for a solution to clear the 2nd one every time a choice is selected in the first. I have learned and seen a lot of cool things trying to search for this but still no luck clearing the 2nd combobox. I would appreciate anyone's help with this! Thank you, -Dan |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Corey - That did it! Knew it was something simple!
"Corey" wrote: Do this in the ComboBox1 code like: Private Sub ComboBox1_Change() ComboBox2.value = "" End Sub Corey.... "Dan" wrote in message ... Hi, I have two comboboxes set up, one dependent on the other. I have been trying to search for a solution to clear the 2nd one every time a choice is selected in the first. I have learned and seen a lot of cool things trying to search for this but still no luck clearing the 2nd combobox. I would appreciate anyone's help with this! Thank you, -Dan |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need to clear cell values, when a different cell is changed. | Excel Discussion (Misc queries) | |||
If cell is changed clear all cells to the right in that row | Excel Programming | |||
Macro to clear range contents when cell contents are changed by us | Excel Programming | |||
Combobox.clear | Excel Programming | |||
Clear Combobox | Excel Programming |