I am trying to create a KPI line chart in SSRS per [Employee] over the time - [Week 25], [Week 24].... [Week 0].
I have a table (dataset) like this (please ignore brackets):
[Employee] [Wk25] [Wk24]...[Wk0]
(John Doe) (0.95) (0.75) ... (0.80)
(Dow Jones) (1,20) (0.50) ... (1.10)
(Absalom Absalom) (NULL) (NULL) ... (2.50)
For Excel it is simple, but I gave up building a line chart in SSRS using the dataset as is.
How (if?) should I transform the source table to be able to make a line chart in SSRS? Any ideas will be really appreciated.