Gets the maximum value in a given list.
ListMaxValue[List],[Default])
Where:
List is the list to process.
Default is the value returned if the list contains no valid number.
Rule | Result |
---|---|
ListMaxValue("1|2|3|4|5","0") | This will return "5" |
ListMaxValue("A|B|C|D|E","0") | This will return "0" |