If I want to reference the bound column of a combo box in the criteria of a query, I put the following in the criteria:
[Forms]![form_name]![cbx_name]
Now what if I want to refernce another column of that Combo Box?
I put the following:
[Forms]![form_name]![cbx_name].Column(2)
This is how I would reference it in VBA, but trying to put that in a query results in an error:
"Undefined funtion '[Forms]![form_name]![cbx_name].Column' in expression"
Help! Thanks.
[Forms]![form_name]![cbx_name]
Now what if I want to refernce another column of that Combo Box?
I put the following:
[Forms]![form_name]![cbx_name].Column(2)
This is how I would reference it in VBA, but trying to put that in a query results in an error:
"Undefined funtion '[Forms]![form_name]![cbx_name].Column' in expression"
Help! Thanks.