Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a column invisible in an ssrs matrix

I have an ssrs matrix , the design of which looks like this :

enter image description here

The sql query used in the above dataset looks like this :

select [YEAR], [MONTH] as MONT , ProductName, NumberofSales from XYZ ;

When the report is run , My output looks like this :

enter image description here

Here , the Column Names 9 , 10 correspond to the months 9 - September and 10 - October.

Change shows the difference in numbers between the month and the previous month . example : number of sales in october - number of sales in september.

I would like to remove the column that I have circled in the above picture . Could you please let me know how I can do this . ??

I already tried right clicking the Change column and changing the visibility property, by adding an expression to look soomething like this :

=(Parameters!UserSelectedDate.Value=Fields!MONT.Value)

But that gives me an entire blank space for the Change column like this :

enter image description here

But I do, not want to see the blank space. I would like to remove the column completely. Please let me know if it is possible.

like image 432
CodeNinja Avatar asked Oct 21 '22 19:10

CodeNinja


1 Answers

I don't know, why it shows blank space, but here is how I handled this problem:

  1. Choose "column visibility" property of column "Change" enter image description here
  2. Then I added expression for hiding column: =IIF(Month(Fields!Date.Value)=Parameters!UserSelectedDate.Value,True,False)

And when I select report parameter to 1 and preview the report, it hides Change column for month 1: enter image description here

like image 130
Konrad Z. Avatar answered Oct 24 '22 00:10

Konrad Z.