Mode Function
Description:
The most common member of a list.
If more than value is the most common than the first such value is returned.
Returns:
Any
Parameter:
Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The list. |
Examples:
When using functions inside a field, remember the field brackets:
{Mode(VariableName)}
Expression | Result |
|---|---|
Mode( List("a","b","a","c","c","c","a") ) | "a" |
Mode( List("a","b","a","c","c","c","a","c","c") ) | "c" |