We have a single table that contains Order data for all our customers. From this, we would like to create a simple SSRS report that displays 12 months of data from a selected start month (controlled by parameter with 12 months in drop down) and separate the monthly data into one of two department columns.
Basically, we would like the data to display as follows on the report:
Month Dept1 Dept2 MonthlyTotal
Sept 100 500 600
Oct 100 200 300
Nov 200 100 300
Dec 100 300 400
Jan 0 100 100
Feb 0 0 0
Mar 0 0 0
Apr 0 0 0
May 0 0 0
June 0 0 0
July 0 0 0
Aug 0 0 0
Total 500 1200 1700
What is the best way to achieve this? Should we use a Table or Matrix object? Should we hardcode 12 "month" rows in the report and dynamically populate the cells with expression like logic?
In case it impacts our view above we also would like the users to be able to drill down to the see the underlying detail records for each value.