Hi,
I used a combox that fills as you type in a project with a long list. I used this option instead of the regular dropbox, because at time we have more than 1000 options to choose from, and it easier for the user to start typing and selecting.
The only issue I am having with the combox, is that it is really slow, and sometimes crashes the project. Also, at times, it seems to appear in other sheets on the same document workbook, or if I have another workbook open, it pops up there Iis there a way that this can be sped up with vba? Or is there maybe an option in the preferences that I need to change?
Any help would be of great assistance.
this is the code that I have for the combobox
I used a combox that fills as you type in a project with a long list. I used this option instead of the regular dropbox, because at time we have more than 1000 options to choose from, and it easier for the user to start typing and selecting.
The only issue I am having with the combox, is that it is really slow, and sometimes crashes the project. Also, at times, it seems to appear in other sheets on the same document workbook, or if I have another workbook open, it pops up there Iis there a way that this can be sped up with vba? Or is there maybe an option in the preferences that I need to change?
Any help would be of great assistance.
this is the code that I have for the combobox
VBA Code:
Private Sub ComboBox1_Change()
ComboBox1.ListFillRange = "Dropdown"
Me.ComboBox1.DropDown
End Sub