Combobox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have inserted a combobox on a worksheet using the control toolbox, and
subsequently attached a macro to it.

Why is it when an item from the drop down list is already selected, and the
same item is then reselected the macro does not activate?
 
If you're using the "ComboBox1_Change" event, then you're not really changing
the value--so it doesn't fire.

You may want to consider putting a button next to the dropdown and have the user
click that when they need to run it again. (and remove it from the _change
event).

Or reset the combobox when your code finishes. (If your list is extremely long,
the user will have to scroll down again, though.)
 

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

Similar Threads

Add list in Control Combo Box 3
Access items stored in combobox 1
ListFill Range 1
Combobox drop down 2
Combobox drop down 2
combobox 4
ComboBox problem 3
Change ComboBox arrow colour???? 2

Back
Top