TMax()

TMax(a;b) returns the maximum time or value from results with ID a to b.

e.g. TMax(1;10) - returns the maximum time from the Results with ID from 1 to 10

TRMax()

TRMax(a;b) has the same functionality as TMax() but uses the rounded time values.

e.g. TRMax(1;10) - returns the maximum time from the Results with ID from 1 to 10 using rounded time values

TMaxID()

TMaxID(a;b) has the same functionality as TMax() but returns the ID of the result that holds the maximum time.

e.g. TMaxID(1;10) - returns the ID of the result with the maximum time from the Results with ID from 1 to 10

TMaxText()

TMaxText(a;b) has the same functionality as TMax() but returns the formatted time of the result that holds the maximum time

TMaxName()

TMaxName(a;b) has the same functionality as TMax() but returns the name of the result that holds the maximum time.

This can only be used directly in output lists or in user-defined fields / functions, it cannot be used in Results as it returns a text value.

e.g. TMaxName(1;10) - returns the name of the Result with the maximum time from the Results with ID from 1 to 10

TTMax()

TTMax() takes an arbitrary list of result IDs and returns the maximum time or value from those results. 

e.g. TTMax(11;21;31;41) - returns the maximum time from the list of results 11,21,31,41

TTRMax()

TTRMax() has the same functionality as TTMax() but returns the rounded time of the result that holds the maximum time.

TTMaxID()

TTMaxID() has the same functionality as TTMax() but returns the ID of the maximum result.

TTMaxText()

TTMaxText() has the same functionality as TTMax() but returns the formatted time of the result that holds the maximum time.

TTMaxName()

TTMaxName() has the same functionality as TTMax() but returns the name of the result that holds the maximum time.

TTMaxIndex()

TTMaxIndex() has the same functionality as TTMax() but returns the position in the list of the result which holds the maximum time. 

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

TMaxIf()

TMaxIf(a;b;c;d) returns the maximum time from results with ID a to b, which is greater than or equal to c but less than or equal to d.

e.g. TMaxIf(1;10;3600;3900) - returns the maximum time from Results with ID from 1 to 10, which is greater than or equal to 1h and less than or equal to 1h05m