CONTAINS is a DAX function that returns TRUE if there exists at least one row where all specified columns have the specified values.
Syntax
CONTAINS(
Table,
[ ColumnName, ... ],
[ Value, ... ]
)
Argument | Properties | Description |
---|---|---|
Table | The table to test. | |
ColumnName | Repeatable | A column in the input table or in a related table. |
Value | Repeatable | A scalar expression to look for in the column. |