Interesting question and one that I don't recall being satisfactorily answered before.
Here is an example what worked for me to create an arbitrary tie breaker. I created a new field which was fid 8 called [Value + Record ID# /10000]
The formula as you might guess was
[Value] + [Record ID#] / 10000
Then I ranked that field using this formula
var text QUERY = "{8.LTE.'" & [Value + Record ID# /10000] & "'}";
Size(GetRecords($QUERY))
.
.
.
Note that there were triplicate and duplicate ties for Values 23 and 100 which were broken by the Record ID# / 10000
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------