Groups | Blog | Home
all groups > sql server reporting services > february 2005 >

sql server reporting services : sorting in a drilldown report


Bucky
2/15/2005 7:00:45 PM
In a drilldown report, is it possible to sort by an aggregated column
like total? Here's an example of what I mean. I would like the final
report to sort by TOTAL in descending order.

original data set:

region state sales
------ ----- -----
East NY 500
East MA 100
West CA 700
West WA 200

After drilldown/grouping:

region total
------ -----
East 600
West 900
Robert Bruckner [MSFT]
2/15/2005 8:44:20 PM
You can use aggregate functions for sorting data. E.g. you can sort by
=Sum(Fields!Sales.Value)
Does this provide what you are looking for?

--
This posting is provided "AS IS" with no warranties, and confers no rights.


[quoted text, click to view]

Bucky
2/16/2005 9:17:48 AM
[quoted text, click to view]

Yes, thanks!
AddThis Social Bookmark Button