I am having a problem incorporating three searchable comboboxes with dropdown lists.
I've created three searchable comboboxes with dropdowns in the way similar to this, that I fount on youtube (video). In short it's a combobox that you can type in, which dynamicaly updates the ListFillRange to corespond to the typed in string. Thus you can search for a country and then select it on a dynamic dropdown.
I have three of these comboboxes to select countries. The comboboxes are on one sheet and the dynamic lists (called CountryOne, CountryTwo, CountryThree - created in name manager) are on a seperate sheet. I've uploaded the file on dropbox.
For the comboboxes the following simple code is used:
Private Sub ComboBox1_Change()
ComboBox1.ListFillRange = "CountryOne"
ComboBox1.DropDown
End Sub
Private Sub ComboBox3_Change()
ComboBox3.ListFillRange = "CountryTwo"
ComboBox3.DropDown
End Sub
Private Sub ComboBox2_Change()
ComboBox2.ListFillRange = "CountryThree"
ComboBox2.DropDown
End Sub
Every one of the comboboxes works fine, until I select a country in one of them. After one country is selected (say in combobox1) and I move to another combobox (combobox2), the dropdown list for that combobox stops working. If I type something in combobox2 the dropdown is displayed under combobox1 (combobox with the selected country) and shows only the selected country. It's hard to explain, so please see the file.
To help in spotting the problem I've created the following video. In it I first test all the three comboboxes, and they work fine. Then I select a country in one of them, and the other two stop working properly.
Any idea to solve the problem will be very helpful.