Survey Tabulation > Advanced expressions > Operators > Categorical comparison operators > Not equal to
 
Not equal to
The not equal to (<>) operator returns True if the two variables contain different categories.
Examples
Result
{1,3,6,8} <> {3,1,6,8}
False
{1,3,6,8} <> {3,1,6}
True
{FOSSILS, BIRDS, WHALES} <> {WHALES, BIRDS, FOSSILS}
False
{FOSSILS, BIRDS, WHALES} <> {BIRDS, FOSSILS}
True
See also
Categorical comparison operators