Hello everybody,
I have a single report who displaying tables from different SqlDataSource and everything works fine.
I want to add a bar chart displaying data from an other SqlDataSource ( stored procedure ) in the same scope.
Here is my stored procedure return :
ID Name
1 Hello
2 Hello
3 Bye
4 Hello
5 Bye
6 Hi
I want my chart to display data like this :
- One bar by name (distinct)
- The value is the count of the repetition
Example :
bar "Hello" => value = 3
bar "Bye" => value = 2
bar "Hi" => value = 1
I am trying to solve my problem since few days, without the expected result
PS : i cannot modify the stored procedure
Thanks a lot, Kevin.
I have a single report who displaying tables from different SqlDataSource and everything works fine.
I want to add a bar chart displaying data from an other SqlDataSource ( stored procedure ) in the same scope.
Here is my stored procedure return :
ID Name
1 Hello
2 Hello
3 Bye
4 Hello
5 Bye
6 Hi
I want my chart to display data like this :
- One bar by name (distinct)
- The value is the count of the repetition
Example :
bar "Hello" => value = 3
bar "Bye" => value = 2
bar "Hi" => value = 1
I am trying to solve my problem since few days, without the expected result
PS : i cannot modify the stored procedure
Thanks a lot, Kevin.