D
DanielS
I have two combo boxes on a form. I am trying to use the
first one as a query criteria to "filter" the available
choices for the second combo box. The query is set to run
at runtime. It seems to be working somewhat but my
problem is that Combo Box 2 shows the wrong column.
Here is my generic query code:
SELECT Table.Column1, Table.Column2 FROM Table
_WHERE (((Table.Column2) = Me!Combo1))
_ORDER BY Table.Column1 ASC
When I select a value in Combo1, the resulting selections
for Combo2 are coming from Column2 but I want to see
Column1. How do I change which column is displayed in
Combo2?
first one as a query criteria to "filter" the available
choices for the second combo box. The query is set to run
at runtime. It seems to be working somewhat but my
problem is that Combo Box 2 shows the wrong column.
Here is my generic query code:
SELECT Table.Column1, Table.Column2 FROM Table
_WHERE (((Table.Column2) = Me!Combo1))
_ORDER BY Table.Column1 ASC
When I select a value in Combo1, the resulting selections
for Combo2 are coming from Column2 but I want to see
Column1. How do I change which column is displayed in
Combo2?