- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

ckunath
Communicator
08-09-2017
05:23 AM
Hello,
I currently have a table that is ordered by time, ascending. It looks like this:
Date | Action
9pm | Order finished
8pm | Processing order step 3
8pm | Processing order step 2
8pm | Processing order step 1
7pm | Start processing order
When I try to sort by time descending, I however get this:
Date | Action
7pm | Start processing order
8pm | Processing order step 3
8pm | Processing order step 2
8pm | Processing order step 1
9pm | Order finished
As you can see, the events at 8pm did not change their order, therefore making it harder to read the table.
How can I correctly "turn the table around"? Any help is appreciated.
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

cmerriman
Super Champion
08-09-2017
05:31 AM
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

cmerriman
Super Champion
08-09-2017
05:31 AM
use |reverse
to flip it the other way
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

ckunath
Communicator
08-09-2017
05:32 AM
Oh boy, i feel stupid for not finding it myself. Thank you!
