Hi,
I have a combo box that I'd like to have populate with data from a table column in Excel. I am using the code below, but am getting a 'Run Time Error 70 Permission denied'. Can anyone tell me what I am doing wrong?
Many Thanks
I have a combo box that I'd like to have populate with data from a table column in Excel. I am using the code below, but am getting a 'Run Time Error 70 Permission denied'. Can anyone tell me what I am doing wrong?
Many Thanks
VBA Code:
Private Sub ComboBox1_initialize()
Me.ComboBox1.List = Worksheets("BQ Lists").ListObjects("Biils").ListColumns(1).DataBodyRange.Value
End Sub