Skip to main content

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

FieldTypeRequiredDescription
componentsStatFormulaComponentThe formula for the array (list) of values to check for inequality.