@anthonysnyder said:
As an example I tried to order these three movies as Marvel 1, Marvel 2 and Marvel 11 expecting them to sort into numerical order.
use a leading 0 for the 1-digit numbers Marvel 01 etc
or simply use release years instead of consecutive numbers
You could possibly have an issue with embedded metadata if you’re using MP4s
But more than likely it’s due to not padding the single digits with zeroes
Don’t feel bad. It just proves you’re not a full blown geek. Those of us that are know that zero is a number and comes first and computers are dumb - they don’t interpret meaning, just bits and bytes. When you’re using a computer to sort, the computer compares character-to-character, i.e. the first characters to each other, then the second, etc. and so on until a numerical value is totaled and then sorts them accordingly. A programmer might - if it was expected to encounter numbers in a sort list - program a function to accommodate grouped numerical digits, but this would be unusual and a very specific case to be worth that much work.