Thank you for your suggestion, but I am still receiving multiple records for each vendor, while I would like to see only 1 record for each vendor.
.
SELECT VendorPayables.[Vendor#], VendorPayables.VendorInvoiceNo
FROM VendorPayables LEFT JOIN Vendors ON VendorPayables.[Vendor#] = Vendors.[Vendor#]
GROUP BY VendorPayables.[Vendor#], VendorPayables.VendorInvoiceNo;
.
Please advise me as to what I am doing wrong?
.
Thanks / Lisa