I am attempting to change the value of Combobox2 when Combobox1 is changed.
Here is what I have.
I am returned an error stating:![]()
Sub Combobox1_Change () Combobox2.Value = "(Select)" End Sub
"Run-Time error '380': Could not set the Value property. Invalid property value."
When I remove the (Select) string and just set the .Value = "" it will run the code but I want to set the value of the combobox to Value not blank ("")
It should be noted that I am using a Userform_Initialize sub which is pre-populating the values of all Comoboxes on the Userform including Comboboxes1 and 2.
Bookmarks