I have a table that looks something like this
Product | Language | Cost
----------------------------
X | En | 5
X | D | 5
Y | Jp | 10
Y | Sp | 10
And I want it to look like this
Product | En | D | Jp | Sp
-------------------
X | 5 | 5 | 0 | 0
Y | 0 | 0 | 10 | 10
So what I want to do is to take all the values in the Language column and use them as column headers (done by printing the column as a row) and then match the Cost value to the new table where the the different languages are headers instead of values in a column.
How to do this in Reporting Services? Thanks
Use a matrix with columns grouped by Language and rows by Product, as follows
Gives
Edit
Or with the new data set gives the following