Column and Row grouping in SQL Server Reporting Services 2008
This is the desired result I need to populate as a report, where xx is number of people. I have a table which has fields like: ---------- table1 ---------- id state year(as Quarter) gender I need to determine the count from id and populate as a report. The year is like 20081, 20082..20084 (in quarter). I have created a dataset using this query: SELECT STATE,GENDER,YEAR,COUNT(*) FROM TABLE 1 GROUP BY STATE,GENDER,YEAR From this query I could populate the result ex: ca, m , 20081,3 ny, f , 20091,4 From the above query I could populate the count and using group by(row) state(in ssrs). I need to