Hi my first post so sorry, I have a userform with a few combo boxes on it three of them I can update the values but one will not update. Its the only one that triggers some code but I am happy to run the code after.
Code:
Me.TextBox1.Value = Range("E14").Value ' works fine'
Me.TextBox2.Value = Range("H14").Value ' works fine'
MeCmboType.ComboType.Text = Range("U14").Value '[COLOR=rgb(184, 49, 47)] [/COLOR][COLOR=rgb(65, 168, 95)]this combo box does not update the value[/COLOR]
Call CmboType_Change ' this is the macro triggered by the combo box if ran from form
Me.ComboBox2.Text = Range("L14").Value ' this combo box works fine
Me.ComboBox3.Text = Range("M14").Value ' this combo box works fine
Me.ComboBox4.Text = Range("N14").Value ' this combo box works fine