Skip to content

=MAX

The MAX function returns the largest numeric value from a list of numbers separated by semicolons.

=MAX(Parameter1; Parameter2; Parameter3; ...)
  • Parameter1, Parameter2, Parameter3, … – The numeric values or field tokens to evaluate.
  • Evaluates each numeric value provided.

  • Compares all values in the list.

  • Returns the highest number found.

  • Formula functions are case sensitive and must be written in ALL CAPS.

  • All parameters must be numeric; if any value is not numeric, the function returns an empty result.

  • Field tokens containing numbers can be used instead of hard-coded values.

  • Useful for finding maximum values such as highest cost, largest quantity, or latest score.

  • You can include as many parameters as needed - there is no fixed limit as long as syntax is valid.

=MAX(15; 6; 27; 10)

Returns: 27


MAX, maximum value, numeric comparison, list of numbers, workflow formulas, Boolean logic, formula function