ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Creating a named range? (https://www.excelbanter.com/excel-discussion-misc-queries/177371-creating-named-range.html)

dksaluki

Creating a named range?
 
Could someone please help? I'm having trouble creating a named range,
and adding that range to a ComboBox. The range that I want to add is
horizontal, cells A1:E1, calling it "Test". When I add "Test" to
ComboBox by doing ComboBox1.ListFillRange = "Test", it only shows A1
in the dropdown. But when I change the named range to VERTICAL,
cells A1:A5, everything works out perfectly. Can you not create
horizontal named ranges? Are my ComboBox properties not set
right?....
Please help.

DK


Jim Rech[_2_]

Creating a named range?
 
The list fill range must be vertical. If you insist on a horizontal range
you'll have to populate the combobox by a macro. This example code assumes
the combobox is on a worksheet.

Sub FillCombo()
Dim Cell As Range
With Worksheets("Sheet1")
For Each Cell In .Range("Test")
.ComboBox1.AddItem Cell.Value
Next
End With
End Sub

The combobox will not remember the list when the sheet is saved and reopened
so you'd have to run this when the workbook is opened. Better just to go
with a vertical list.

--
Jim
"dksaluki" wrote in message
...
| Could someone please help? I'm having trouble creating a named range,
| and adding that range to a ComboBox. The range that I want to add is
| horizontal, cells A1:E1, calling it "Test". When I add "Test" to
| ComboBox by doing ComboBox1.ListFillRange = "Test", it only shows A1
| in the dropdown. But when I change the named range to VERTICAL,
| cells A1:A5, everything works out perfectly. Can you not create
| horizontal named ranges? Are my ComboBox properties not set
| right?....
| Please help.
|
| DK
|



dksaluki

Creating a named range?
 
ok, i will try to use vertical list.

i did also try the .AddItem method to add each cell item to the
combobox list. I got a "permission denied error"! story of my life!
...BUT that's another problem.

thanks. i will use vertical list.

dk


All times are GMT +1. The time now is 09:43 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com