Table not sorting after the date created and name of the file

1 - you want to sort by file.cday or by Date?
2 - to Date be considered a real date, you need to follow the right format: YYYY-MM-DD, i.e., Date: 2022-11-01
3 - file.name is considered as whole string! I just point to the fact if you see 11 - something before 2 - title it’s the normal behavior to alphabetic order in strings (because in the case it doesn’t “see” the “2” and the “11” as numbers)
4 - if all your file names start with a number and you want sort the results by that number (ignoring the rest), then I think that is possible. (check this example: Dataview does not sort files by name - #2 by mnvwvnm)

1 Like