Hi guys, I'm newbie in Report Builder. I absoluteley don't understand this behaviour:
Linked to SQL Server 2012...query:
select name, max([1]) as '1',max([2]) as '2',max([3]) as '3', sum([1]+[2]+[3]) as tot from stepf1 group by name order by sum([1]+[2]+[3]) desc
result:
Rosberg4
71021
Alonso3
10518
Hamilton10
5116
Raikkonen5
4716
Vettel7
2312
Webber2
327
Button1
146
as you can see is ordered by tot. But, when I show the report it doesn't have any order. Ok, I go to ordering, put the value top from z to a and nothing...I tried with an aggregation but it returns me an error. I used table and matrix...nothing...How can I order for TOT...? I'm crazyng.
And more, if I do the same operation in SSRS it return me the report but in this way:
Button1 146Webber2 327
Vettel7 2312
Hamilton10 5116
Raikkonen5 4716
Alonso3 10518
Rosberg4 71021