I would probably create a query like
SELECT Year([Date]) as SalesYear, Sum([Gross Sales]) as GrossSalesSum,
Sum([Discounts]) as DiscountsSum, Sum([Tax]) as TaxSum
FROM qselYourQuery
GROUP BY Year([Date]);
Then create a multiple column report that goes across then down. To create
the labels on the left, refer to this KB article
http://support.microsoft.com/default.aspx?scid=kb;en-us;208491&Product=acc.
--
Duane Hookom
MS Access MVP
swhite said:
My data fields are: [store#] [date] [gross sales] [discounts] [sales tax]
[payment recd] etc. (approx 30 total fields).
I have one row of data for each store for each date. I just have one
large table with all stores and dates. I know how to write a query that
will give me the raw data for 1 store for this year and last year both, but
I don't know how to split that into 2 separate columns on a report. My
query results look like this: