I have a matrix report, which has Id, Item in the Row Groups. Status in the Column Groups and Total, Cost1, Cost2 in the details. "Status" column has the values that I want to pivot on (that's why I am using matrix report). In the design view my report looks like this:
Id Item Status Cost1 Cost2 [Id] [Item] Sum(Total) Sum(Cost1) Sum(Cost2)
Cost1 and Cost2 are not grouped under the "Status" column, Sum(Total) is !! In the "preview" of the report, all the values within the "Status" column are displayed as separate column(which is what I want, pivoting!!). Here is how my preview looks like.
Id Item S1 S2 S3 S4 Cost1 Cost2 1 B-234 23 21 3 4 $23.50 $30.50 2 C-650 0 3 1 5 $5.00 $10.00
This report will be drilling down to another report and I want to have hyperlinks on S1,S2,S3,S4 as well as on the values that are in there(e.g. 23 and 0 for S1). If the user clicks on S1, only the S1 status should be passed as a parameter in the 2nd report I'll be navigating to.
Also, the new report should be opened after clicking on any of these hyperlinks. Not sure, how I'll be setting the actions on the "Status" column for each of the statuses. Because, in my design phase I just have 1 "Status" column, and it expands out while previewing. So, how can I make sure that user can see only the data related to ANY of the 4 statuses (S1,S2,S3,S4) here and not all ??