Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Excerpt
hiddentrue

ne(value, compareValue) Returns True if two values are not equal otherwise returns False.

Function: ne()

Returns True if two values are not equal otherwise returns False.

Syntax

  1. ne(value, compareValue)
  2. value != compareValue
ArgumentTypeDescription
valueAnyFirst value to compare
compareValueAnyList of values to be compared with

Examples

ne(in.success, "Passed")

Returns True if in.success does not match the string "Passed"

...

When used as an attribute definition in a aggregate function, the output attribute will be populated with the number of records in each candidate set for which in.success has any value other than "Passed".

See Also