getting value of 2nd column in cbo

M

MK

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
 
R

Rick Brandt

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)
 

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

Top