Using a copy now create a new field right next to the 14 character field. Make it a text type with a length of 5.
Now you can use the following SQL with table and name updates to split the field and have them both available for the sort and primary key.
UPDATE <YourTableName> SET <YourTableName>.[OrigFieldName] = Mid$(<YourTableName>.[OrigFieldName], 1, 9), <YourTableName>.[NewFieldName] = Mid$(<YourTableName>.[OrigFieldName], 10, 5);
Now set your Primary Key equal to the two field combination of the Original field and the new field. The sort will be like you wanted it and you will have the 5 characters seperated for use at originally needed.
Bob Scriver
Nobody believes the official spokesman... but everybody trusts an unidentified source.
Author, Bagdad Bob???