Please refer to the link to http://sqlfiddle.com/#!3/1b16f/7 for the schema details. I have used dynamic pivot query to get the month on month details. Now, I am trying to get the sub total for "transactional" and "Customer" and the grand total at the end on the same pivot query. So far I have tried grouping with cubes and rollup but did not get a satisfactory result.
I am trying to achieve this at the end.
+---------------------+---------------+-------------+-------------+-------------+
| CTQ | TYPE | Oct-12 | Nov-12 | Dec-12 |
+---------------------+---------------+-------------+-------------+-------------+
| CAR | CUSTOMER | 4.019040077 | 4.128151178 | 4.05606883 |
| REJECTION | CUSTOMER | NULL | NULL | 3.126549759 |
| REOPEN | CUSTOMER | 3.010499668 | 3.043744049 | 2.985404802 |
| REPEAT | CUSTOMER | 3.086827141 | 3.055288995 | 3.202606293 |
| CUSTOMER TOTAL | | 2.111 | 2.111 | 2.111 |
| QMC | TRANSACTIONAL | 3.699047224 | 3.417352407 | 3.525099552 |
| SQ | TRANSACTIONAL | NULL | 5.017541394 | 4.90992542 |
| TAT | TRANSACTIONAL | 2.548737677 | 2.509322914 | 2.538090124 |
| TTU | TRANSACTIONAL | 3.364436242 | 3.295240684 | 3.294951974 |
| TRANSACTIONAL TOTAL | | 2.33 | 2.33 | 2.33 |
| GRAND TOTAL | | 2.12 | 2.12 | 2.12 |
+---------------------+---------------+-------------+-------------+-------------+
I am using SQL Server 2008R2. Please help!!
I was able to answer my question with this query:
See this SQL Fiddle for demonstration: http://sqlfiddle.com/#!3/1b16f/18