Let me begin by saying I'm not use to working with Embedded ActiveX Controls ~
I have an Embedded ComboBox on Sheet1 and I'm trying to fill it with a dynamic list from Sheet2.
I have tried using every method I have for Userform ComboBoxes and nothing. I have Googled, Bing'd, watched 7 YouTube videos and consulted Walkenbach ~ Nothing.
Please tell me this is possible and if so, please guide me on how to accomplish this ~
Below are just some of my efforts so far, each one producing either nothing or a 'Type Mismatch' Error:
As always ~ Thank You Very Much
I have an Embedded ComboBox on Sheet1 and I'm trying to fill it with a dynamic list from Sheet2.
I have tried using every method I have for Userform ComboBoxes and nothing. I have Googled, Bing'd, watched 7 YouTube videos and consulted Walkenbach ~ Nothing.
Please tell me this is possible and if so, please guide me on how to accomplish this ~
Below are just some of my efforts so far, each one producing either nothing or a 'Type Mismatch' Error:
Code:
For Each Cell In [List] 'List is a Named Range using the offset/counta arguments
Me.ComboBox1.AddItem Cell
Next Cell
Code:
Dim LastRow As Long
LastRow = ThisWorkbook.Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Row
Rng1 = Thisworkbook.sheets("Sheet2").Range("A1:A" & LastRow)
Me.ComboBox1.ListFillRange = Rng1
Code:
Rng1 = Range("List").Address(0,0)
Me.ComboBox1.ListFillRange = Rng1
As always ~ Thank You Very Much