I have data like so:
NAME TITLE SALARY HIREDATE
-------------------------------
HANK BOSS 100 1/1/2016
JOHN JERK 100 1/1/2015
MIKE PUNK 200 1/1/2014
We want to show this data as such:
NAME HANK JOHN MIKE
-------------------------------
TITLE BOSS JERK PUNK
SALARY 100 100 200
HIREDATE 1/1/16 1/1/15 1/1/14
This is how my client needs to see the data, unfortunately.
How can this be done with SSRS (sql 2012)?
I tried to create a Matrix, I was able to get the names as columns on top. But when I tried to do the rest of it, no luck.
Thanks!