I am sorry to sound stupid but I cannot enter it into the
properties box under listfillrange - is there something I
should do or must this code be entered elsewhere?
Since you said listfillrange, assume this is an activeX (control toolbox
toolbar) Combobox on a Worksheet:
Put the code in the worksheet.Activate Event
Private Sub Worksheet_Activate()
me.Combobox1.ListFillRange = me.Range("AG2").Value
End Sub
Right click on the sheet tab and select View Code.
In the resulting module, in the left dropdown select Worksheet and in the
Right dropdown Select Activate
Put in code like the above.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.