Combobox need value of column 1 in table en value of column 2 in report

pot2000

Registered User.
Local time
Today, 00:36
Joined
Sep 23, 2003
Messages
10
I have a form with a combobox and need de value of the first column in my table this is not a problem but when I use a query to select data and want the value of the second column in a report I get the value of the first column in the report is there a way around this???

Greetings Raymond
 
Check out the "Column" property of the ComboBox object.
 
What should I check out. If I change the bound column I get the text in the table.
 
Okay, we'll spell it out for you

Me.YourComboBoxNameHere.Column(1)

will give you the SECOND column ( Column(0) would give you the first).

And what lagbolt was trying to say was try looking in the help file (trying to get you to think a bit because it is explicity laid out in the help file).
 
Thanks that helps a lot. I don't know why I din't look in the help file before I posted the question here.
 

Users who are viewing this thread

Back
Top Bottom