SSRS Multi Value Parameter. Check whether “Select All” is selected

后端 未结 7 1707
失恋的感觉
失恋的感觉 2020-12-17 10:40

I have a multi value parameter in my SSRS Report. I want to find out whether (Select All) is checked in that parameter.

In other words, whether all the values in th

7条回答
  •  轮回少年
    2020-12-17 11:02

    In case anyone is still having issues doing this, I just coded this easy fix.

    =IIF(COUNTROWS("dataset").Equals(Parameters!parameter.Count),"it is equal","this is not equal")
    

提交回复
热议问题