NXMold
Technical User
- Jul 22, 2008
- 104
I list purchase orders in a subform linked by job number. The list displays items from tblPOHeader.
A second table tblPOItems contains line items, a single purchase order can contain line items for many jobs.
I am writing a query for the sub form so that the header fields are repeated for each job number.
If I have PO# 1001 with associated line items referencing job number 12800, 12801, and 12802 there should be three lines in my query. However, if I have PO# 1002 with line items referencing job number 12800 and 12800... I want a single result.
I know there is some method using Count() but I cannot find any information about it.
SELECT tblPOItems.[CMEPO#], tblPOItems.CMEJobNumber, tblPurchaseOrders.Supplier, tblPurchaseOrders.OrderDate, tblPurchaseOrders.OrderBy
FROM tblPOItems LEFT JOIN tblPurchaseOrders ON tblPOItems.[CMEPO#] = tblPurchaseOrders.[CMEPO#];
A second table tblPOItems contains line items, a single purchase order can contain line items for many jobs.
I am writing a query for the sub form so that the header fields are repeated for each job number.
If I have PO# 1001 with associated line items referencing job number 12800, 12801, and 12802 there should be three lines in my query. However, if I have PO# 1002 with line items referencing job number 12800 and 12800... I want a single result.
I know there is some method using Count() but I cannot find any information about it.
SELECT tblPOItems.[CMEPO#], tblPOItems.CMEJobNumber, tblPurchaseOrders.Supplier, tblPurchaseOrders.OrderDate, tblPurchaseOrders.OrderBy
FROM tblPOItems LEFT JOIN tblPurchaseOrders ON tblPOItems.[CMEPO#] = tblPurchaseOrders.[CMEPO#];