#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 190
Default named range

hi,

i have the following to set the listfillrange of a combobox (forms
combobox). but it is not working:

Sheets("template").ComboBox1.Range ("num_dropdown")
any ideas?

thanks in advance,
geebee

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default named range

hi
is the forms combo box on the sheet????
if so you wont be able to set it. you would need a sheet combo box from the
control tool box. then use this code.
Sub setlfr()
Dim r As Range
Set r = Sheets("sheet2").Range("Num_DropDown")
ComboBox1.ListFillRange = r.Address
End Sub
iis the list fill range on another sheet than the combobox?
if so use this
ComboBox1.ListFillRange = r.Address(External:=True)

post back if i have mis understood.
Regards
FSt1
"geebee" wrote:

hi,

i have the following to set the listfillrange of a combobox (forms
combobox). but it is not working:

Sheets("template").ComboBox1.Range ("num_dropdown")
any ideas?

thanks in advance,
geebee

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default named range

oh
forgot to mention. the forms combo box doesn't have a list fill range. it
has row source.

regards
FSt1

"FSt1" wrote:

hi
is the forms combo box on the sheet????
if so you wont be able to set it. you would need a sheet combo box from the
control tool box. then use this code.
Sub setlfr()
Dim r As Range
Set r = Sheets("sheet2").Range("Num_DropDown")
ComboBox1.ListFillRange = r.Address
End Sub
iis the list fill range on another sheet than the combobox?
if so use this
ComboBox1.ListFillRange = r.Address(External:=True)

post back if i have mis understood.
Regards
FSt1
"geebee" wrote:

hi,

i have the following to set the listfillrange of a combobox (forms
combobox). but it is not working:

Sheets("template").ComboBox1.Range ("num_dropdown")
any ideas?

thanks in advance,
geebee

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
automatic range - named range give me circular reference... George Thorogood Excel Discussion (Misc queries) 0 February 22nd 07 07:53 PM
Array as a "named range" - formula ok in cells, but error as "named range" tskogstrom Excel Discussion (Misc queries) 11 December 28th 06 04:44 PM
inserting a named range into new cells based on a named cell Peter S. Excel Discussion (Misc queries) 1 June 4th 06 03:53 AM
Compare a selected Range with a Named range and select cells that do not exist PCLIVE Excel Programming 1 October 18th 05 07:09 PM
If any cell in named range = 8 then shade named range JJ[_8_] Excel Programming 3 August 26th 05 11:09 PM


All times are GMT +1. The time now is 08:29 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"