kelly mort
Well-known Member
- Joined
- Apr 10, 2017
- Messages
- 2,169
- Office Version
- 2016
- Platform
- Windows
Hello everyone,
I have a combobox called ComboBox1 with is populated by a rowsource. The combobox is on a userform. The issue is that I also have a listbox that populates the ComboBox1 when I click it. Since it (ComboBox1 ) was populated by the rowsource, I get an error when I click it. So I decided to clear the items in it (ComboBox1 ) when I click the listbox before the listbox populates the textboxes of which the ComboBox1 is part. I used :
And I have been able to bypass the error however I wanna get the lists back in the ComboBox1. I am stucked. I need help
I have tried:
But did not work
Thanks
I have a combobox called ComboBox1 with is populated by a rowsource. The combobox is on a userform. The issue is that I also have a listbox that populates the ComboBox1 when I click it. Since it (ComboBox1 ) was populated by the rowsource, I get an error when I click it. So I decided to clear the items in it (ComboBox1 ) when I click the listbox before the listbox populates the textboxes of which the ComboBox1 is part. I used :
Code:
ComboBox1.Rowsource = ""
And I have been able to bypass the error however I wanna get the lists back in the ComboBox1. I am stucked. I need help
I have tried:
Code:
ComboBox1.Rowsource = Sheet1.Range("myList")
Thanks