What I’m trying to do
I’m keeping a bunch of dates, e.g.
1 file called Birthdays with lists where each row has [date:: mm-dd][item:: (Birthday) name], another file for example is Upcoming Reminders with lists where each row has [date:: yyyy-mm-dd][item:: (Task) Return item X by today!].
So now I want to create a dataview where it gives me upcoming items that are upcoming.
Things I have tried
So I first started with some simple query as follows
TABLE WITHOUT ID f.date_, f.item, dateformat(date(f.date_, "MM-dd"), "yyyy-MM-dd") as d
FROM #Taskable
FLATTEN file.lists as f
WHERE f.item
SORT f.d DESC
Unfortunately this gives me a valid list but no way to sort by the derived field “d”.
I want to sort based on the derived field (so I can also change the derived field to be today - due date to order by). Is this possible?