I have an ActiveX ComboBox on sheet 2 which I am trying to populate with a dynamic named range on sheet 6. The dynamic named range has 2 columns both of which I wish to see in the combobox list. I have tried various suggestions from previous posts, couple of examples below, but I am missing something. The named range is not part of a table and being defined using the Offset function
=OFFSET('Implement Defaults'!$B$10,0,0,COUNTA('Implement Defaults'!C2:C9999),2)
![]()
With Sheet2.ComboBox1 .ColumnCount = 2 .ListFillRange = "" .ListFillRange = Sheets("Sheet6").Range("implementList").Value End With
![]()
With Sheet2.ComboBox1 .ColumnCount = 2 .ListFillRange = "" .List = "=Sheet6!" & Sheet6.Range("implementList").Address(Extrernal=True) End With
Any ideas where I am going wrong
Bookmarks