Thread: Combo Boxes
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Combo Boxes

or
Worksheets("Sheet1").Combobox1.listfillrange _
= "Sheets3!a1:a3"

--
Regards,
Tom Ogilvy


"nathan" wrote in message
...
application.screenupdating = false
sheets("sheet1").select
activesheet.shapes("Combobox1").select
selection.listfillrange = "Sheets3!$a$1:$a$3"
range("a1").select
application.screenupdating = true

-----Original Message-----
How do I fill a combo box with a range from a different
worksheet, ie the data is in worksheet 3 range a1 to a3
and I want it to appear in a combo box on sheet 1 called
products

Thanks in advance

Nigel
.