Multi Column Sorting with one column Static ordered desc
Multi Column Sorting with one column Static ordered desc
![RealBigAl](https://secure.gravatar.com/avatar/2c4fd82e64de63c63730c32e46fbf540/?default=https%3A%2F%2Fvanillicon.com%2F2c4fd82e64de63c63730c32e46fbf540_200.png&rating=g&size=120)
I am tryng to figure out how to do multi column sorting but keep one column locked to Descending
like:
if col1 is a date column and col2 name column and has many of the same names i want it to order by Name but also order by date descending always
EXAMPLE of what i am looking for:
onload: order by date desc
date name
1/2/13 Bob
1/14/13 Nick
4/14/13 Bob
5/14/13 Nick
on name sort order by Name asc
Date Name
1/2/13 Bob
4/14/13 Bob
1/14/13 Nick
5/14/13 Nick
on name sort order by Name Desc
Date Name
1/14/13 Nick
5/14/13 Nick
1/2/13 Bob
5/14/13 Bob