Hi, i have the following code that populates one Combobox which is fine. However, i seem to be unable to populate a second combobox (Combobox2) that pulls its values form range B. Couls somebody help to amend? Thank you very much!
![]()
Sub UserForm_Initialize() Dim lstRng As Range Set lstRng = Sheet1.Range("A2:J2", Range("A65536").End(xlUp)) Me.Combobox1.RowSource = lstRng.Address End Sub
Bookmarks