I have the following code so my Combo box displays all of the values in a column from another table (table = Observer):
Row Source: SELECT DISTINCT Observer.ObserverID FROM Observer;
this works great, however, I'd like my combo box to display 2 columns - the values from 2 different columns of the Observer table.
I know I need to set my Column Count to 2 (for 2 columns), but I've tried using the code:
Row Source: SELECT DISTINCT Observer.ObserverID FROM Observer; SELECT DISTINCT Observer.LastName FROM Observer;
and it's not working.
any suggestions?
Row Source: SELECT DISTINCT Observer.ObserverID FROM Observer;
this works great, however, I'd like my combo box to display 2 columns - the values from 2 different columns of the Observer table.
I know I need to set my Column Count to 2 (for 2 columns), but I've tried using the code:
Row Source: SELECT DISTINCT Observer.ObserverID FROM Observer; SELECT DISTINCT Observer.LastName FROM Observer;
and it's not working.
any suggestions?