On Mar 8, 3:04 pm, LongTermNoob
<LongTermN...@discussions.microsoft.com> wrote:
> Thanks, but that copies the corresponding list value, not the actual value in
> the combo box, and I would then need to use @CHOOSE to get the corresponding
[quoted text clipped - 21 lines]
> > HTH
> > Kostis Vezerides
Ahh, I see. CHOOSE is one option. But you can also use VLOOKUP. You
can have a column of numbers (1, 2, 3,...) before your range that
contains the labels of your combo box. Then, if a combo box is linked
to a cell, say F3, where the index number of the label is stored, you
can retrieve the label with:
=VLOOKUP(F3,Labels!A:B,2,0)
Here we assume that the labels are in sheet called Labels and that the
values were moved to column B:B after inserting the numbers in column
A:A.
Does this help?
Kostis
LongTermNoob - 08 Mar 2007 13:44 GMT
Yes it does. I hadn't considered using VLOOKUP. I have some awkward mods to
do to my table, but it should work fine.
Thanks for the help,
> On Mar 8, 3:04 pm, LongTermNoob
> <LongTermN...@discussions.microsoft.com> wrote:
[quoted text clipped - 38 lines]
> Does this help?
> Kostis