Hi,
I frequently need to sort the data in columns at two levels simultaneously. However, when I sort the data (as shown below), I don't get the desired output.
Data:
Name Age Date
aaa 23 1-Feb-11
aab 22 5-Mar
abc 21 9-Apr
aaa 23 11-Jun
ba 42 5-Jul
aab 22 6-Aug
Desire Output:
Name Age Date
aaa 23 1-Feb-11
aaa 23 11-Jun
aab 22 5-Mar
aab 22 6-Aug
abc 21 9-Apr
ba 42 5-Jul
Here, sorting is done first on Date column (Oldest to Newest) and then on Names ( Similar names clubbed together) and advanced sort doesn't give this output.
Can anyone help me out on this?
Bookmarks