I am building a new report that contains Location (ex. California, New York, Texas..), Department (ex. Finance, Enrollment, Claims..) which is setup to be a multi-value parameters. I was able to use 1 parameter in report row grouping, but i'm not able to use both location and department multivalue parameter in row grouping. Is this scenario possible in SSRS?
How to use a multi-value parameters in report groupings
115 Views Asked by Arsee At
1
There are 1 best solutions below
Related Questions in SSRS-2008-R2
- Aligning Two Matrix Tables in SSRS Based on Matching Column Names
- an expression of non boolean type specified in a context where a condition is expected near in report query
- Unable to call a custom dll method in Microsoft SSRS
- SSRS 2008 r2 - How do I repeat a sub-report for each row of data returned in the results set?
- SSRS puts # in front of field name and scrambles the report columns
- Dynamic Header Fields Based on SSRS Grouping in Body
- SSRS Subtotals in Filtered Matrix
- In RDLC report's IIF condition's else block always executed and throwing the exception
- SQL Server stored procedure causes Visual Studio to hang when added as part of a dataset
- SSRS Tablix - Grouping and summing data by one or more fields WITHOUT showing details?
- I have SSRS report which is generating CSV File! which was 24 million rows! it is taking too much time! because of it is giving time out Error
- how to limit no of rows when generating report in dynamic 365 business central AL
- SSRS Report export to PDF is printing previous sub report data in PDF but showing correct in PPT or Doc or TIFF
- How to avoid having hidden columns on SSRS when exported to Excel?
- How to make a column Hide in ssrs matrix
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Assuming your parameters are labelled ParamDepartment and ParamLocation, you need to modify the sql dataset for the tablix to include at the end (after the group by clause):
HAVING (tbl_xyz.Location IN (@ParamLocation)) AND (tbl_xyz.Department IN (@ParamDepartment))