I have a subform2 table that is used for entering data. One of the subform2 fields needs data from a table used in (subform1) based on a value in the Main Datsa Entry and subform1 tables. I would like to have a drop down box on the subform2 field that allows the user to select a value based a query to the subform1 table which takes a value from the main form table.
The code that I am using in the subform2 row source field is as follows:
SELECT tblProject.Job_ID FROM tblProject WHERE (((tblProject.ProjClient_ID)=Forms![Main Data Entry]!Client_ID));
I'm sure the query is correct but it is not showing data in the drop down box.
Please help.
The code that I am using in the subform2 row source field is as follows:
SELECT tblProject.Job_ID FROM tblProject WHERE (((tblProject.ProjClient_ID)=Forms![Main Data Entry]!Client_ID));
I'm sure the query is correct but it is not showing data in the drop down box.
Please help.