I\'m a first time user on this forum. Here\'s my scenario: On a userform, I have a combobox, two textboxes and an \'OK\' button. When the user makes a makes a selection f
What is the source for the combobox items? If it is linked to a range then the change event is triggered because writing to the worksheet changes the linked source which in turn means the combobox refreshes itself.
If you do not want this to happen then you will need to 'cache' the values from the range into an array and populate the combox with them.