-
I've got the following dataviewjs-code to show my meetings for a specific project:
The meetings files it compares look like this (no other dataview-data in them):
However, sometimes the sort is out of order. I noticed that if the date in question has no daily note attached to it, then it will be sorted to be shown last. Any ideas here why that behaviour is? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You should actually be sorting on the extracted date since |
Beta Was this translation helpful? Give feedback.
You should actually be sorting on the extracted date since
date
is aLink
object and not aDateTime
object. WhenDate
is empty, it likely isnull
andnull
s are placed at the end of a sort. See #985. There was also an issue where this functionality changed but can't find that right now.