list
from #Daily_Note and !"Templates"
sort "MM-DD-YYYY" desc
and sort by date desc
and sort by month desc
What I’m trying to do
I have Daily Notes and I am trying to sort by month with the top date being the most recent date and sorted from where it was created and not modified. I don’t have metadata in my notes.
I’ve noticed a bug with this where some days are out of place in the list even when the date format is in a format where it can be sorted as a straight string.
TABLE Without ID
file.link as Date,
sort Date
Results in
2022-02-03
2022-02-01
2022-02-02
2022-02-07
2022-02-04
…
TABLE
sort file
Results in only 1 date being out of place
2022-02-12
2022-02-01
2022-02-02
2022-02-03
2022-02-04
but it has not been important enough for me file a bug report on github yet.