I've got a bunch of data, in this instance it's lists of fixtures for my son's juniors football team, which I'd like to order for ease. The age group is split into sub teams, e.g. U10 Reds, U10 Blues etc. I can order all the fixtures by the sub-team, which is progress. What I'd really like to do though is order them by date/time of the fixture, but within the sub-teams. So I've currently got something like this:
| Time | Team |
|---|---|
| 9:00 | Blues |
| 9:15 | Blues |
| 9:30 | Blues |
| 9:45 | Blues |
| 10:00 | Reds |
| 10:15 | Reds |
| 10:30 | Reds |
| 10:45 | Reds |
| 9:00 | Whites |
| 9:15 | Whites |
| 9:30 | Whites |
| 9:45 | Whites |
But what I'd like is this:
| Sorted | Team |
|---|---|
| 9:00 | Blues |
| 9:15 | Blues |
| 9:30 | Blues |
| 9:45 | Blues |
| 9:00 | Whites |
| 9:15 | Whites |
| 9:30 | Whites |
| 9:45 | Whites |
| 10:00 | Reds |
| 10:15 | Reds |
| 10:30 | Reds |
| 10:45 | Reds |
Any idea how I can do this?