How to programmatically transfer multiple values to a report parameter? I pass like this:
ReportParameter id_shift = new ReportParameter("id_sectionshift", string.Join(", ", GlobalVariable.arrIdShift)); reportViewer1.ServerReport.SetParameters(new ReportParameter[] { id_shift }); this.reportViewer1.ServerReport.Refresh(); this.reportViewer1.RefreshReport(); After that I see this in the report:
If I fix it manually like this, then everything works:
I tried "," on ";" Does not help. Tried to make a footnote "\ n", also does not help. I knocked on the wheel, slammed the hood - I didn’t drag the spear method, I ask for help.

string.Join("\r\n", GlobalVariable.arrIdShift)? - Ruslan_K