A family of Microsoft relational database management systems designed for ease of use.
Re-reading that above made me realize what I was missing and what I was doing wrong.
In the report, I was using the fields NetSalesValue, QtyInvoiced, and CostValue, when I should have been using SumOfNetSalesValue, SumOfQtyInvoiced, and SumOfCostValue.
"Sum(dbo_ARTRNDETAIL.NetSalesValue) AS SumOfNetSalesValue, Sum(dbo_ARTRNDETAIL.QtyInvoiced) AS SumOfQtyInvoiced, Sum(dbo_ARTRNDETAIL.CostValue) AS SumOfCostValue"
I don't do this a lot so I forget some of the little things. Then I post up here and you all either help or remind me and either way to me it is a big help and I greatly appreciate it.
The report is now displaying correctly.