Not sure the best way to explain so I figured I'd give a description and hopefully it'll make sense. :)
I have a cross tab report that uses the 12 months of the year for the rows and 2 consecutive years for the columns, and sum amounts in the details section. (12x2 grid with sum details).
My SQL data source has all the details needed, but these details are split up by an account number. So, if I have 100 accounts * 2 years * 12 months = 2400 rows of data in my data source.
(ex: Acct1, Jan, 2012,12units || Acct2, Jan, 2012, 2units || Acct1, Feb, 2012, 8units || etc.)
My end goal is to do a grouping by account and do a page break after group's footer to get 100 separate data pages (one for each account) each with a cross-tab containing the 12x2 grid showing all the details for only that one account. I'm hoping to do it with the single data source SQL query (as opposed to making 100 separate round trips that may be needed to do each individual account).
Ideas? Thanks!