B
Brett
This is the result I get with the following query:
RefNumber InvoiceLineAmount InvoiceLineQuantity
65914 7.72 1
65914 500 1
65922 110.05 1
65925 77.11 1
65925 7.72 1
SELECT InvoiceLine.RefNumber, InvoiceLine.InvoiceLineAmount,
InvoiceLine.InvoiceLineQuantity
FROM InvoiceLine
WHERE (((InvoiceLine.TxnDate)>=[Enter Beginning Date] And
(InvoiceLine.TxnDate)<=[Enter Ending Date])
Basically, I only want the Sum of the the InvoiceLineAmount and
InvoiceLineQuantity PER RefNumber. If I use the aggregate Sum function
for either it creates a grand total of all the lines on all the
invoices. Any suggestions?
Thank you!
Brett
RefNumber InvoiceLineAmount InvoiceLineQuantity
65914 7.72 1
65914 500 1
65922 110.05 1
65925 77.11 1
65925 7.72 1
SELECT InvoiceLine.RefNumber, InvoiceLine.InvoiceLineAmount,
InvoiceLine.InvoiceLineQuantity
FROM InvoiceLine
WHERE (((InvoiceLine.TxnDate)>=[Enter Beginning Date] And
(InvoiceLine.TxnDate)<=[Enter Ending Date])
Basically, I only want the Sum of the the InvoiceLineAmount and
InvoiceLineQuantity PER RefNumber. If I use the aggregate Sum function
for either it creates a grand total of all the lines on all the
invoices. Any suggestions?
Thank you!
Brett