TLast()

TLast(a;b) scans the results a to b and returns the last time entered (Highest ID).

e.g. TLast(1;10) - returns the time from the result with the highest ID from Results with ID from 1 to 10

The function TLast(a;b;c;d) retrieves all times in the results with IDs a to b and sorts them from smallest to largest.
It then only considers the cth best to dth best result and returns the last time of these (=highest ID).

e.g. TLast(1;10;1;3)  - Returns the result with the highest ID from the smallest 3 times from Result IDs 1-10

TLast(a;b;c;d;1) corresponds to TLast(a;b;c;d), but sorts the times in descending order.

TLast(a;b;0;0;0;c) scans the results a to b and returns the cth last time entered.

e.g. TLast(1;10;0;0;0;3)  - Returns the result of the 3rd from last result (according to Result IDs) which has been entered from Result IDs 1-10

TRLast()

TRLast(a;b), TRLast(a;b;c;d), TRLast(a;b;c;d;1) and TRLast(a;b;0;0;0;c) have the same functionality as TLast() but use the rounded time values.

TLastID()

TLastID(a;b), TLastID(a;b;c;d), TLastID(a;b;c;d;1) and TLastID(a;b;0;0;0;c)  have the same functionality as TLast() but return the ID of the result that holds the last time.

See TLast() for examples of using this. 

TLastText()

TLastText(a;b), TLastText(a;b;c;d), TLastText(a;b;c;d;1) and TLastText(a;b;0;0;0;c)  have the same functionality as TLast() but return the formatted time of the result.

See TLast() for examples of using this. 

TLastName()

TLastName(a;b), TLastName(a;b;c;d), TLastName(a;b;c;d;1) and TLastName(a;b;0;0;0;c)  have the same functionality as TLast() but return the name of the result that holds the last time.

See TLast() for examples of using this. 

TTLast()

TTLast() takes an arbitrary list of result IDs and returns the last time entered according to the order of the results in the list. 

e.g. TTLast(11;12;14;13) - returns the last time from the list of results 11,12,14,13 in that order

TTRLast()

TTRLast() has the same functionality as TTLast() but returns the rounded time of the last result.

TTLastID()

TTLastID() has the same functionality as TTLast() but returns the ID of the last result.

TTLastText()

TTLastText() has the same functionality as TTLast() but returns the formatted time of the last result.

TTLastName

TTLastName() has the same functionality as TTLast() but returns the name of the last result.

TTLastIndex()

TTLastIndex() has the same functionality as TTLast() but returns the position in the list of the last result. 

e.g. TTLastIndex(10;20;30;40) - returns a number 1-4 according to the last result of 10,20,30 & 40 which holds a time