go to post Jorge Torres · Jun 8, 2017 Thanks for the input. However, see the definition of how "Sorts After" works:"Binary Sorts after tests whether the left operand sorts after the right operand in numeric subscript collation sequence. In numeric collation sequence, the null string collates first, followed by canonical numbers in numeric order with negative numbers first, zero next, and positive numbers, followed lastly by nonnumeric values."Therefore in your case, 'A', which is 1.0, does NOT sort after 'B', which is 2.2. 1.0 sorts BEFORE 2.2."".......-2.......-1.......0.......1.0.......2.2.......2.......1.......A.......Z.......
go to post Jorge Torres · Jun 8, 2017 Yes, I had thought about this, thanks! It looks like this is how I'm going to implement my solution. However, I shouldn't have to "plus" the variables. I still think there is a deeper problem with ObjectScript.
go to post Jorge Torres · Jun 8, 2017 That's a good idea, but it won't work in my particular use case.