Have a simple table of data that stores news and events with a date field (manual entry on this field). Just has a simple flag to tell what is a news article and what is an event.
What I need to do somehow is to get the news in date descending order so the latest news is displayed first, but I want events in ascending order so the oldest is displayed first, all the data should be listed as one list of a mix of news/events, but listed in the correct date order so the records will be mixed together
=====================================
Title | Date | Type
=====================================
News 1 | 2016/01/18 | N
News 2 | 2016/01/23 | N
Event 1 | 2016/01/25 | E
Event 2 | 2016/02/21 | E
Need the data to be output something like:
=====================================
Title | Date | Type
=====================================
News 2 | 2016/01/23 | N
Event 2 | 2016/01/21 | E
Event 1 | 2016/01/25 | E
News 1 | 2016/01/18 | N
Not the best example but hopefully enough to give you an idea. Not sure if this will even be possible.