I like to load MP3 player with content but many items are named 1-1-itema, 1-2-itemb, 1-3-item3. Then another batch is 1-1-different-item, 1-2-different-item, 1-3-different item.
They sort as
1-1-different-item
1-1-itema
1-2-different-item
1-2-itemb
I want them to sort as
1-1-different-item
1-2-different-item
1-1-itema
1-2-itemb
I want them to play in consecutive order. I have sorted by name - same outcome. I converted title to name and sorted by title - same outcome. I think the sort is only using the first few characters. Is there a way to increase the number of characters that the sort examines? In either name or title? If I could sort by the first 10 characters I'd be fine.