i have an ssrs report with multiple datasets. the report has multiple sections (section 1, section 2, ...). i'm passing a comma separated param list to the stored procs and using in clause (with split) in the queries.
my goal is to generate the report for each param value:
param 1
section 1
section 2
param 2
section 1
section 2
currently when i apply grouping to each section, it displays the report similar to:
param 1
section 1
param 2
section 1
param 1
section 2
param 2
section 2
i can't combine the datasets into one single dataset nor box all the sections and apply grouping on that. based on this design, how can i achieve my goal?
my goal is to generate the report for each param value:
param 1
section 1
section 2
param 2
section 1
section 2
currently when i apply grouping to each section, it displays the report similar to:
param 1
section 1
param 2
section 1
param 1
section 2
param 2
section 2
i can't combine the datasets into one single dataset nor box all the sections and apply grouping on that. based on this design, how can i achieve my goal?