max

FEEL built-in function · List functions

max(list) or max(c1, , cN)

Returns the largest element. All elements must be comparable with each other.

Parameters

ParameterTypeDescription
listlistcomparable values, as one list or as separate arguments

Examples

max(1, 2, 3)
max([date("2026-01-01"), date("2026-07-24")])
2026-07-24 Try it →

Related functions

min · mean · median

Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).