UNIQUES
Syntax
UNIQUES(<list>)
Description
Returns unique values from a selected list.
Examples
Reverse example | UNIQUES returns |
|---|---|
| [red, green, green, yellow] | [red, green yellow] |
| [12, 12, 12, 12, 12, 12, 12, 12] | [12] |
| [Matt, Becky, Frank, Matt] | [Matt, Becky, Frank] |
| [12.6, 12.4, 12.7, 12.9] | [12.6, 12.4, 12.7, 12.9] |
, multiple selections available,