getting value of 2nd column in cbo

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hiya

I have a combo box with 2 columns. The bound column is column 1 ([ID]), whilst the 2nd (visible) column is [Description]

Is there any way that I can extract the [Description] through code without having to resort to Dlookups/SQL in DAO

MK
 
MK said:
Hiya,

I have a combo box with 2 columns. The bound column is column 1 ([ID]),
whilst the 2nd (visible) column is [Description].
Is there any way that I can extract the [Description] through code
without having to resort to Dlookups/SQL in DAO?

= Me.ComboBoxName.Column(1)

(columns are zero-indexed)
 
Back
Top