Page 1 of 1

sort files named

Posted: 16 Feb 2026 09:44
by 7iben
Is it possible to sort files named
06-01-2026
11-02-2026
13-01-2026
in ascending or descending order in list view without 11-02-2026 always being in the middle? It seems to always sort by the first two numbers.
This is how it should be sorted if possible:
06-01-2026
13-01-2026
11-02-2026

Re: sort files named

Posted: 16 Feb 2026 10:00
by highend
Only by adding a CC column and using that for sorting...

Code: Select all

return regexreplace(<cc_name>, "^(\d{2})-(\d{2})-(\d{4})", "$3-$2-$1");

Re: sort files named

Posted: 16 Feb 2026 12:22
by 7iben
Great, thank you very much for your help. :tup: :tup: :tup: