=INDEX(List,cell-link)
where List is the Input range and cell-link is the cell to which the ComboBox is linked.
Aladin
Where do I put this?
what values do I enter for list? cell-link?
Ren --
When you set up a ComboBox (via Forms toolbar), you have to fill in an Input range which can be a range like $E$2:$E$10 or a name e.g., ChoiceList that refers to a range plus a Cell link value (say, $A$2), that is, a cell to which you anchor the ComboBox. Now, when you select something from such a ComboBox, the Cell link will report the position of the selected item in the Input range.
If you want to have the selected item in some cell,
=INDEX(ChoiceList,$A$2) or
=INDEX($E$2:$E$10,$A$2)
will return the selected item or use the selected item in a formula like
=VLOOKUP(INDEX(ChoiceList,$A$2),...)
I thought you wanted to return the selected item into some cell provided you constructed the ComboBox as described above, whence my response.
Aladin
===========