Hi,
I am working on a SSRS report which is fed from below table
Table1
ID,QUESTION,ANSWER,YEAR, FLAG
1, QUESTION-A, ANS1,2002 ,1
2, QUESTION-A, ANS3, 2002, NULL
3, QUESTION-A, ANS5, 2005, 2
-------------------------------------
For my report the above table is pivoted as
Table 2
ID,YEAR,[QUESTION-A], FLAG
1, 2002, ANS1,1
2, 2002, ANS3, 3
3, 2005, ANS5,4
---------------------
Report is a matrix report and Column [ QUESTION-A] is a column group and report looks like
1:- For year parameter 2002
TABLIX headings ---1D,YEAR,ANS1,ANS3
Rows 1, 2002, 1, NULL
2,2002, NULL, 3
1:- For year parameter 2005
TABLIX headings ---1D,YEAR,ANS5
Rows 3, 2005, 4
Client is expecting that for all years there should be heading for all ANSWERS like below
Expected TABLIX headings ---1D,YEAR,ANS1,ANS3, ANS5
But as shown in the table2 ,only year 2005 has ANS5 not all years and
hence when I filter the report by year , column group ANS 5 is not appearing which is correct
How to achieve the expected result?