I want to run VBA code when a user either clicks or presses enter to select a value from a list in a combo box control. Sound simple... right?
I've tried using the combobox_change event, but if the user starts typing a partial string for a value in the comboBox list, the Change event fires BEFORE the entry is complete. (Example: user starts typing first character (1) for a list item 12345 and the change event fires before he/she is done causing havoc!) If the user arrows down, change event fires as well!
So then I tried using a worksheet_change event hoping that changes to the combo_box linked cell would "Fire" the event. Not so. User can select an item from the combo box, linked cell updates, but worksheet_change event does not get triggered. ANY ADVICE APPRECIATED. Thanks
I've tried using the combobox_change event, but if the user starts typing a partial string for a value in the comboBox list, the Change event fires BEFORE the entry is complete. (Example: user starts typing first character (1) for a list item 12345 and the change event fires before he/she is done causing havoc!) If the user arrows down, change event fires as well!
So then I tried using a worksheet_change event hoping that changes to the combo_box linked cell would "Fire" the event. Not so. User can select an item from the combo box, linked cell updates, but worksheet_change event does not get triggered. ANY ADVICE APPRECIATED. Thanks