Forms - Combo box

  • Thread starter Thread starter Manos
  • Start date Start date
M

Manos

Dear all,

when i create a combo box in excel and select as a range
a list in the cell reference i can see a figure, probably
the number of the item i selected from the list

There is any possibility in the cell reference to see the
text i have selected from the range?

Thanks in advance
Manos
 
Manos, the combo box returns a number that corresponds to the position of
the item you selected in the list. So if you select the first item in the
list, the combo box returns 1. If you want to display the actual text
somewhere, use the INDEX function:

=INDEX(ComboBoxInputRange,ComboBoxOutputCell)
 
and if the dropdown is empty, you can:

=if(comboboxoutputcell=0,"",INDEX(ComboBoxInputRange,ComboBoxOutputCell))

(just in case)
 

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 Combo Boxes?! 5
Combo Box/Drop down box 1
Link cell to combo box 2
Graph linked with combo boxes 2
combo boxes 1
Combo box VBA error 5
Combo Box 1
Combo box 2

Back
Top