January 13, 2011 at 7:41 am
I have a bunch of user data that needs to be aggregated and organized in a custom way that I have to do it in SQL. I display this aggregated data in a table, but I also need to display a chart/graph for each of these rows.
I need to have a chart for each row and I need it to pull its own dataset and the charts will be repeated since I need to display a chart for each customer and each customer's sub-settings.
I'm a bit lost.
Thanks 🙂
January 13, 2011 at 7:51 am
Actually, I should find out if I can do it the "correct' way first.
Is there a way of do this kind of aggregate using expressions and groupings in SSRS 2005:
count(distinct case when bAtAbove = 1 then m.iuserid end)
I need this functionality if I want to use SSRS to do my calculations for me, which would then solve my chart issue.
Thanks again 🙂
January 14, 2011 at 1:26 am
Hi bcronce,
Please try to following statement = CountDistinct(iif(Fields!bAtAbove.Value = 1, Fields!iuserid.Value, nothing), "group_name")
Hope this helps.
Kind regards,
Linda
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply