Max
  • 27 May 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Max

  • Dark
    Light
  • PDF

Article Summary

Given a list of numbers, returns the highest number in the list.

Function signature

MAX(values: Array) => Number
ParameterDescription
ValuesList of numeric values

Examples

FormulaReturn value
MAX([100, 3, 20])100
MAX([])null

Was this article helpful?

What's Next