Hi @Zansheen ,
In order to pass multi value parameter to SSRS, you can try the following code.
Dim rptParams As List(Of ReportParameter) = New List(Of ReportParameter)()
Dim param As ReportParameter = New ReportParameter("ParamName")
Dim values As String() = New String() {"P1", "P2"}
param.Values.AddRange(values)
rptParams.Add(param)
Me.ReportViewer1.ServerReport.SetParameters(rptParams)
Hope it could be helpful.
Besides, if I have any misunderstanding, please provide the code you've tried.
Best Regards,
Xingyu Zhao
*
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.