Hi I'm using Crystal Report 2008 and my design is like this:
Report header
Page Header
Group Header#1 (group by Customer)
Group Header#2 (group by Size) (S, M, L)
Details
Group Header#2 (group by Size) (S, M, L)
Group Header#1 (group by Customer)
Because I want to get the Value by customer and by size so I put my summary fields in Group Header 2, so I have an output like this:
Customer Size Amount
----------------------------------------
CUS-A SMALL 23500
CUS-A MEDIUM 33000
CUS-B SMALL 25500
CUS-B LARGE 22500
CUS-C SMALL 50500
CUS-C MEDIUM 20500
CUS-C LARGE 15500
The output is correct, but how can I sort the amount by descending order and the output should be like this:
Customer Size Amount
----------------------------------------
CUS-C SMALL 50500
CUS-A MEDIUM 33000
CUS-B SMALL 25500
CUS-A SMALL 23500
CUS-B LARGE 22500
CUS-C MEDIUM 20500
CUS-C LARGE 15500
Thanks,