combobox matter

  • Thread starter Thread starter Jan Eikeland
  • Start date Start date
J

Jan Eikeland

envir: office97 excel , winxphome

how do u set properties for a combobox to let listpart of combo expand to
the content,
but NOT the edit part of the combo?
thank you
reg jan
 
If the combobox is from the forms toolbar, you can use a defined name as the
source and in the defined name (insert=>Name=>define) you can use a formula

Name: List1
Refersto: =Offset(sheet1!$A$1,CountA(Sheet1!$A:$A),1)

this technique does not work as well with a combobox from the control
toolbox toolbar. You might use some event code to set the listfillrange
for the control (worksheet) or rowsource (userform).
 
thank You.

reg jan
Tom Ogilvy said:
If the combobox is from the forms toolbar, you can use a defined name as the
source and in the defined name (insert=>Name=>define) you can use a formula

Name: List1
Refersto: =Offset(sheet1!$A$1,CountA(Sheet1!$A:$A),1)

this technique does not work as well with a combobox from the control
toolbox toolbar. You might use some event code to set the listfillrange
for the control (worksheet) or rowsource (userform).
 
The formula omitted the 2nd and 3rd arguments

Name: List1
Refersto: =Offset(sheet1!$A$1,0,0,CountA(Sheet1!$A:$A),1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

copying sheet 5
copying and renaming sheets 9
Concenate (Kjede.sammen) 4
non-repeating Comboboxes values 9
ComboBox Drop Down List 5
combo box 1
Combobox selection 1
ComboBox Dropdown not under control 1

Back
Top