W
Wayne
I’m trying to create a query that will show me only the records that
match the current ID fields on the frmTest and subform frmTestSub.
I’ve tried several entries in the Criteria field but the testSubID
keeps popping up the “Enter Parameter Value.” What do I have to type
in the TestSubID field to get the query to work correctly?
Here is the SQL view:
SELECT tblTest.TestID, tblTest.Name, tblTestSub.TestSubID,
tblTestSub.TestID, tblTestSub.Auto
FROM tblTest INNER JOIN tblTestSub ON tblTest.TestID =
tblTestSub.TestID
WHERE (((tblTest.TestID)=[Forms]![frmTest]![txtTestID]) AND
((tblTestSub.TestSubID)=[Forms]![frmTestSub]![txtTestSubID]));
match the current ID fields on the frmTest and subform frmTestSub.
I’ve tried several entries in the Criteria field but the testSubID
keeps popping up the “Enter Parameter Value.” What do I have to type
in the TestSubID field to get the query to work correctly?
Here is the SQL view:
SELECT tblTest.TestID, tblTest.Name, tblTestSub.TestSubID,
tblTestSub.TestID, tblTestSub.Auto
FROM tblTest INNER JOIN tblTestSub ON tblTest.TestID =
tblTestSub.TestID
WHERE (((tblTest.TestID)=[Forms]![frmTest]![txtTestID]) AND
((tblTestSub.TestSubID)=[Forms]![frmTestSub]![txtTestSubID]));