I have a database with 952 records. I need to sort the records in a field called “Records Series Number”. The numbers are assigned by a state agency and I can’t change them, example: 1.1.001, 1.2.001, 1.3.001, 2.1.001, 3.1.001, 4.1.001 ,5.1.001, 6.1.001, 7.1.001, 8.1.001, 9.1.001, 11.1.001, 12.1.001, 13.1.001, 14.1.001, 15.1.001, 16,1.001, 17.1.001, 18.1.001.
The sort ends up like this: 1.1.001, 1.2.001, 1.3.001, 11.1.001, 12.1.001, 13.1.001, 14.1.001, 15.1.001, 16,1.001, 17.1.001, 18.1.001, 2.1.001, 3.1.001, 4.1.001 ,5.1.001, 6.1.001, 7.1.001, 8.1.001, 9.1.001
Is there a way that I can force the sort in numerical order? 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19.
I have several workarounds but thought I’d post my question. Thanks