I am trying to populate a combobox drop down list when a different combobox "combobox2" is clicked. I am receiving the error Runt time error 438 Object doesnt support this property or method. I am also sources the listfillrange values from a seperate worksheet. I have included my code below.
Private Sub ComboBox2_Click()
Dim N As Long
N = Worksheets("Regions-Offices").Cells(1, 8).End(xlDown).Row
ActiveSheet.Cells(1, 2).Value = N
Worksheets("Global").OLEObjects("ComboBox3").Object.ListFillRange = Worksheets("Regions-Offices").Range("H1:" & N).Address
End Sub
offsetfromH1instead of usingNor offsetNrange("h1:h" & n)I would have tried. Which line is the error on, just to be sure. There are some arguments to.addresstoo