2 Queries to get a result!

B

Bob Vance

I have 2 queries qryInvoices and qrypayments
What I am trying to achieve is what was the *total* for my client 2 months
ago
ClientID is Common among both queries
-------------------------
qryPayments
SELECT tblAccountStatus.PaidAmount, tblAccountStatus.OwnerID,
tblAccountStatus.BillDate
FROM tblAccountStatus
GROUP BY tblAccountStatus.PaidAmount, tblAccountStatus.OwnerID,
tblAccountStatus.BillDate;
-----------------------------------
qryInvoices
SELECT tblInvoice.OwnerID, tblInvoice.InvoiceDate,
tblInvoice.OwnerPercentAmount
FROM tblInvoice
GROUP BY tblInvoice.OwnerID, tblInvoice.InvoiceDate,
tblInvoice.OwnerPercentAmount;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top