I have the following data:
-----------------
Name|Value|Type
-----------------
A | 110 | Daily
-----------------
A | 770 | Weekly
-----------------
B | 150 | Daily
-----------------
B | 700 | Weekly
-----------------
C | 120 | Daily
-----------------
C | 840 | Weekly
In SSRS bar chart, the Name will be X axis, the Value will be Y axis, the Type will be series.
What I need is the bar chart will sort by the Weekly Value descending, so the expected order should be:
C Weekly
C Daily
A Weekly
A Daily
B Weekly
B Daily
How to do that? In query or in SSRS chart setting?