Dataview: Group by Month (Desc) then inside it, group by ctime (Desc)

LIST rows.file.link
FROM #journal 
GROUP BY dateformat(file.ctime, "MMMM") AS MON
SORT MON DESC

This is what I got so far, taken from this post.
The problem is, months are ordered alphabetically, and the notes within the groups are ordered ascending. Don’t know what I’m doing wrong, but a little help would be great!

Thanks everyone!

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.