Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,648
- Office Version
- 365
- 2016
- Platform
- Windows
I have a combobox (IFM_title.lbx_smodel) on my userform that las a list populated by assigning it the values of a named range.
This large list contains names of animals in in.
On worksheet 3, I have a small list of animals occupying cells AB2 through AB4 (3 cells - Gorilla, Giraffe, Raccoon repectively. These 3 values exist in modlist3, and would be in the combobox's list.
How can I select (?) these three values in the combox list to highlight them?
VBA Code:
IFM_title.lbx_smodel.List = Application.WorksheetFunction.Transpose(ThisWorkbook.names("modlist3").RefersToRange)
On worksheet 3, I have a small list of animals occupying cells AB2 through AB4 (3 cells - Gorilla, Giraffe, Raccoon repectively. These 3 values exist in modlist3, and would be in the combobox's list.
How can I select (?) these three values in the combox list to highlight them?