Have 2015, 2016, and current Sales information for this year stored in a table called Archive. Fields are StoreName, Transaction Sales Month (i.e. 1 for January, 2 for February...)Sales Count, Sales Year. I need to create a rolling 12 month report. So for example if we were through March:
I would need to compare Jan-Mar of this year to the same months last year and show growth percentage for each month for each store
Since April-December of this year hasn't occurred, I would need to compare those months in 2016 to 2015.
Unless there is an easy fix here that I am missing, I have been struggling with theory using a series of queries and tables, but I haven't found a solution.
Current Working Theory Assuming we're through March:
Query Archive Table for Jan-March this year and last year
Query Archive Table for April-Dec last year and 2015
Calculate GP for both and add all to one table, crosstab 12 months, and use as datasource for a report
I am OK with creating queries, it's the theory behind filtering through a set of queries is what's eating me.