I want to pass multi value parameter from main report to sub report, Is there any option do so in SSRS?
Yes, there are a few ways to do this.
pCategory
then you can simple pass this parameter to your subreport and both values will be passed.SPLIT()
function. e.g. =SPLIT("Apples,Oranges", ",")
. Using this expression as the subreport's parameter value will split the string into an array and pass it to the subreport.