Issue with Embedded ActiveX ComboBox form on a spreadsheet where:
- Upon changing the value in the ComboBox, the value changes properly
However, when a cell/shape is selected on the sheet, the ComboBox value reverts back to the previous value for a split second before going back to the new value
Problem because: If a button for a macro is pressed after changing the ComboBox value, the old ComboBox value is displayed while the macro is running, rather than the new value
Question: Is there a way to force this event (reverting to old value before going displaying new value) programmatically?
I've tried using the following in the Change event for the ComboBox, as well as within the macro that is called by another shape on the sheet:
- Calculating the worksheet
- Selecting/Activating a cell
- ScreenUpdating = false, ScreenUpdating = true
Did a bit more searching and have found this question Excel ActiveX Combobox shows previous selection when losing focus with the same issue