NotEquals
This formula allows you to check for inequality among given values. Note
that the inequality will be checked in consecutive pairs only (ie: for the
array [1, 2, 3], this formula will check that 1 != 2 and that 2 != 3,
but will NOT check if 1 != 3). This means that this function can return
true even if some of the values in the array are equal (e.g:, for the
array [1, 2, 1]).
JSON Format
{
"type": "notEquals",
"components": ...
}
Fields
| Field | Type | Required | Description |
|---|---|---|---|
components | StatFormulaComponent | ✓ | The formula for the array (list) of values to check for inequality. |