Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi,
i have a form dropdown/combobox. i would like to know how to use a named range as the listfillrange. i know how to specify something like H12:H45 but when i type the name of a named/defined range it does not work. thanks in advance, geebee |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe
Private Sub UserForm_Activate() For Each N In ActiveWorkbook.Names ComboBox1.AddItem (N.Name) Next End Sub ComboBox1.AddItem (N) would add the address of the named range ComboBox1.AddItem (N.Name) & N would add the name and address Mike "geebee" wrote: hi, i have a form dropdown/combobox. i would like to know how to use a named range as the listfillrange. i know how to specify something like H12:H45 but when i type the name of a named/defined range it does not work. thanks in advance, geebee |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When you say "form dropdown/combobox", you mean a ComboBox on a UserForm,
right? If so, I cannot duplicate your problem... when I type the defined Name into the RowSource property in the Properties window, it properly assigns the defined range for that Name to the control. -- Rick (MVP - Excel) "geebee" (noSPAMs) wrote in message ... hi, i have a form dropdown/combobox. i would like to know how to use a named range as the listfillrange. i know how to specify something like H12:H45 but when i type the name of a named/defined range it does not work. thanks in advance, geebee |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() if you mean in code, you have to do it like this: Private Sub UserForm_Initialize() Me.ComboBox1.RowSource = Range("test2").Address End Sub -- Gary "geebee" (noSPAMs) wrote in message ... hi, i have a form dropdown/combobox. i would like to know how to use a named range as the listfillrange. i know how to specify something like H12:H45 but when i type the name of a named/defined range it does not work. thanks in advance, geebee |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Referencing a named range based upon Range name entry in cell | Excel Worksheet Functions | |||
Array as a "named range" - formula ok in cells, but error as "named range" | Excel Discussion (Misc queries) | |||
inserting a named range into new cells based on a named cell | Excel Discussion (Misc queries) | |||
Compare a selected Range with a Named range and select cells that do not exist | Excel Programming | |||
If any cell in named range = 8 then shade named range | Excel Programming |