I want to be able to fill a combo box with values from a non local table (an address database (400MB) held on a backend server ).
Is it possible to make a connection and use a "SELECT FROM WHERE" SQL statement to populate the combo box on a form.
I can get it to work from a local table but not from the backend database eg.
These statements are placed in the row source of each combo box on the form with each combo box using the value of the previous one to narrow the search.
Is it possible to make a connection and use a "SELECT FROM WHERE" SQL statement to populate the combo box on a form.
I can get it to work from a local table but not from the backend database eg.
Code:
SELECT DISTINCT [tblCouncil].[Town], [tblCouncil].[Council] FROM tblCouncil WHERE (([tblCouncil].[Council])=[Forms]![frmMain]![Combo27]);
These statements are placed in the row source of each combo box on the form with each combo box using the value of the previous one to narrow the search.