I have been spending a bit of time on this problem with no solution so far. I want to sort records numerically in ascending order, but it puts larger numbers before smaller numbers.
Currently the records sort as:
1447327
1729215
535728
686713
If I sort in descending order, it shows:
686713
535728
1729215
1447327
I would like to have it sort to show:
535728
686713
1447327
1729215
I don't want to have to put a 0 in front of the 535728 or 686713 to make it work that way. This table field is a text field as a small number of records will be alpha/numeric.
Thanks for the help!!