Clear cell when drop down combobox is changed

D

Dan

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
 
C

Corey

Do this in the ComboBox1 code like:

Private Sub ComboBox1_Change()
ComboBox2.value = ""
End Sub



Corey....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top