IN DAX Operator
The IN operator returns TRUE if a row of values exists or contained in a table, otherwise returns FALSE.
Except syntax, the IN operator and CONTAINSROW function are functionally equivalent, as in the following example.
Products[Color] IN { "Red", "Black" } CONTAINSROW ( { "Red", "Black" }, Products[Color] )
Related article: The IN operator in DAX
Last update: Sep 12, 2018 » Contribute » Show contributors
Contributors: Alberto Ferrari, Marco Russo