M
mikezcg
im not great at sql and need to nest these statements ( for speed) but
cant get it i would appreciate any help thanks"
SELECT qryExistingPersons.Person,
qryExistingPersons.SumOfInvoiceAmount, qryExistingPersons.CheckNum,
qryExistingPersons.Deal, qryExistingPersons.Reference
FROM qryExistingPersons LEFT JOIN Employee ON
qryExistingPersons.Person = Employee.EmployeeName
WHERE (((Employee.EmployeeName) Is Null));
qryExistingPersons :
SELECT Detail.Person, Sum(Detail.InvoiceAmount) AS SumOfInvoiceAmount,
Detail.CheckNum, Detail.Deal, Detail.Reference
FROM Detail
GROUP BY Detail.Person, Detail.CheckNum, Detail.Deal,
Detail.Reference;
cant get it i would appreciate any help thanks"
SELECT qryExistingPersons.Person,
qryExistingPersons.SumOfInvoiceAmount, qryExistingPersons.CheckNum,
qryExistingPersons.Deal, qryExistingPersons.Reference
FROM qryExistingPersons LEFT JOIN Employee ON
qryExistingPersons.Person = Employee.EmployeeName
WHERE (((Employee.EmployeeName) Is Null));
qryExistingPersons :
SELECT Detail.Person, Sum(Detail.InvoiceAmount) AS SumOfInvoiceAmount,
Detail.CheckNum, Detail.Deal, Detail.Reference
FROM Detail
GROUP BY Detail.Person, Detail.CheckNum, Detail.Deal,
Detail.Reference;