Hi,
I have a group name which should be sorted by 2 fields - COUNT and AMOUNT.
This is because the field COUNT has ties (same number for different groups)
GROUP_NM COUNT AMOUNT
1 9 20
2 4 10
3 4 50
4 4 20
5 2 60
From the above example I need to print GROUP_NM in DESC order of both COUNT and AMOUNT.
I have a group name which should be sorted by 2 fields - COUNT and AMOUNT.
This is because the field COUNT has ties (same number for different groups)
GROUP_NM COUNT AMOUNT
1 9 20
2 4 10
3 4 50
4 4 20
5 2 60
From the above example I need to print GROUP_NM in DESC order of both COUNT and AMOUNT.