Mendix 7 is no longer supported unless you have Extended Support (for details, please contact Mendix Support). Mendix 7 documentation will remain available for customers with Extended Support until July, 2024.

XPath max

Last modified: June 29, 2022

1 Overview

The max() function returns the maximum value of its argument.

The function requires an XPath query as argument.

The function must specify a column in the query to aggregate.

The query must specify an attribute that has a numeric type.

2 Examples

This query returns the highest total price found in any object:

1
max(//Sales.Order/TotalPrice)

This query returns the highest total price of an order placed by a customer named “Jansen”:

1
max(//Sales.Order[Sales.Customer_Order/Sales.Customer/Name = 'Jansen']/TotalPrice)