PhixFlow Help

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

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"

sum(if(ne(in.success,"Passed"),1,0))

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

  • No labels