I have an excel spreasheet where I have several combo boxes which are meant to trigger code on a change event
The problem is some of the combobox events trigger when other combo boxes are changed.
I decided to test by clearing out all code except 1 event
Private Sub Asset_Material_Change()
MsgBox ("why")
End Sub
This event runs no matter what combo box is changed???
Can anyone give any pointers on why this is happening?
(code is placed in sheet1 object and not Thisworkbook)
Thanks,
Os