I'm trying to create an SQL statement that shows all of the records in the Requisition table (and the associated Items table) for Requisitions that are not authorized
I've already gotten the query to display the info that I need - this code shows all the records that are related to unauthorized requisitions
but how do I run the query and bind the result set to a Requisition form with an Items subform?
What? Who? ME????
I've already gotten the query to display the info that I need - this code shows all the records that are related to unauthorized requisitions
Code:
SELECT DISTINCTROW Requisition.ReqNo, Requisition.ReqDate, Requisition.SupplyAt, Requisition.VoteChargeable, Items.Qty, Items.Description, Items.UnitPrice, Items.TotalPrice, Items.Supplier, Items.Comments
FROM Requisition INNER JOIN Items ON Requisition.ReqNo = Items.ReqNo
WHERE (((Requisition.Authorized)=False));
but how do I run the query and bind the result set to a Requisition form with an Items subform?
What? Who? ME????