max
To return the highest or latest value of an array
Use this function to find the highest value or the latest value in an array.
The function works only with an array of numbers or time-related values.
max([any])
max([number])
max([timestamp])
any
max([number)]
To return the highest number of a number array.1
max([1, 21, 9, 35])
Result: 35
max([date])
To return the latest timestamp of a timestamp array.1
let currYear := year(now());
2
let list := (select Employees).date(currYear, month(Birthday), day(Birthday));
3
max(list)
Result: The last birthday of a year (for example of an employee)
Do you want to dive deeper into the topic? Take a look at the corresponding part of our video tutorial.
Last modified 4mo ago