How to make a column invisible in an ssrs matrix

前端 未结 2 1482
慢半拍i
慢半拍i 2020-12-19 12:40

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

\"enter

The sql

2条回答
  •  长情又很酷
    2020-12-19 13:17

    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

提交回复
热议问题