I have a multivalued parameter named as Graduation_Year. It is a optional parameter. So I have used the "Please Select" as the default with value 0. Therefore I have used below query to make it optional and filter values only when a real value is entered.
EH.Pwks_year_of_graduation IN (@GradYear) OR 0 IN (@GradYear)
But here user has to de- select "Please Select" get the correct result.
I tried to filter the Graduation_Year parameter using dataset parameter expressions. But it didn't work. Please suggest a method to filter out the 1st item in the multivalued parameter list (it can be used with below expression).
=iif((Parameters!GradYear.Value(0)="0" And Parameters!GradYear.Count>1)
,**Filtered Parameter value list**
,Parameters!GradYear.Value)
All I want is to remove Parameters!GradYear.Value(0), when Parameters!GradYear.Count>1 form the multivalue parameter before it is considered in the query.
Thanks Mathee
You have started off the wrong foot and now you are trying to fix something you shouldn't have done anyway.
The provided value
**Please Select**
should be a prompt and not a specified value for your parameter.If you go to the parameter properties there is a property called
Prompt
specifyPlease select
there.Now when you execute the report it will show the parameter as follow: