6

I created a matrix report. The report looks like this:

enter image description here

I want to sort the output so the region with highest sales should come on top.

e.g. From the above report South should show on top then West, Central and East.

How can this be done in SSRS (2008R2)?

Ian Preston
  • 38,816
  • 8
  • 95
  • 92
MSBI-Geek
  • 628
  • 10
  • 25

1 Answers1

9

You should just need to change your sort expression in the Group Row properties. Should be something like

=Sum(Fields!YourFieldHere.Value)
Jeffrey Van Laethem
  • 2,601
  • 1
  • 20
  • 30