Hello -
This question seems like it should have an easy answer but I have not been able to find it.
I have a field called LineNumber that is a Long Integer. When I sort on this field, it sorts like this:
1
10
11
2
3
4
5
6
7
8
9
How do I get it to sort like this:
1
2
3
4
5
6
7
8
9
10
11
The number is automatically generated with code so it has to stay numeric in type.
Thank you in advance.
This question seems like it should have an easy answer but I have not been able to find it.
I have a field called LineNumber that is a Long Integer. When I sort on this field, it sorts like this:
1
10
11
2
3
4
5
6
7
8
9
How do I get it to sort like this:
1
2
3
4
5
6
7
8
9
10
11
The number is automatically generated with code so it has to stay numeric in type.
Thank you in advance.