Menu Close

Check if Select All is Selected in a Parameter

If you have a multu-value parameter in SSRS and you would like to determine if the user has selected (checked) “Select All” you should use the following expression:

=IIF(COUNTROWS(“YourDataSet”).Equals(Parameters!YourParameter.Count),”it is selected”,”it is not selected”)