Hi all, was wondering if there is a way to get a count of zero to appear in a qeury like this:
SELECT [PO Query].VendorNo, Count([PO Query].VendorNo) AS CountOfVendorNo
FROM [PO Query]
GROUP BY [PO Query].VendorNo, [PO Query].[Store#]
HAVING ((([PO Query].[Store#])=[forms]![VendorOrder]![chkstore]));
Right now, if there is no VendorNo in the store# I select, the VendorNo doesnt appear at all
Thanks,
Haerion
SELECT [PO Query].VendorNo, Count([PO Query].VendorNo) AS CountOfVendorNo
FROM [PO Query]
GROUP BY [PO Query].VendorNo, [PO Query].[Store#]
HAVING ((([PO Query].[Store#])=[forms]![VendorOrder]![chkstore]));
Right now, if there is no VendorNo in the store# I select, the VendorNo doesnt appear at all
Thanks,
Haerion