View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default combo box control source

Option Explicit
Private Sub UserForm_Initialize()
With Me.ComboBox1
.ControlSource = ActiveWorkbook.Worksheets("sheet9999") _
.Range("somenamedrangehere").Address(external:=Tru e)
End With
End Sub

Adjust the sheetname and range name to what you need.

paula wrote:

I need to use a named range for the control source for a combo box in a
userform. is that possible, and if so, how!

thanks!
--
paulao


--

Dave Peterson