Picking value from dropdown list column

L

Lee

Hi,

Supposing you wanted a text box to show the value in the
second column of a combo box thats called cboList. You
would make the control source of your text box:

= cboList.Column(1)

The column numbering starts with zero so the second
column is number 1.

Regards,

Lee
 
Top