I am trying to hide a column on my ssrs report based on a condition that the current month aka month(today()) is a specific integer.
For example, I have to hide "column11" until November 1st and "column12" until December 1st.
Thank you.
In ssrs when you right click column you will find column visibility option. There you can write expression for hiding I.e if true it will hide column, if false then will Show column.
Expression will be something like below.
IIF(Month(today())<11,true,false)
And for December it will be
IIF(Month(today())<12,true,false)
Note: this is pseudo code and may have typo error