Getting the value of multiple column combobox

T

Tan SH

Hi,

I know that it is possible to have multiple columns in a
combobox whereby the datasource is from columns in a table.

However, I reliase that the property comboboxName.Value
would only give me the value in the bound column. How can
I get the selected values from the other columns?

br/Tan
 
A

Allen Browne

Use the combo's Column property.

The first one is called column zero, so the 2nd column is:
=[MyCombo].Column(1)
 
Top