INTERSECT is a DAX function that returns the rows that appear in both the left-side and right-side tables.
Syntax
INTERSECT(
LeftTable,
RightTable
)
| Argument | Properties | Description |
|---|---|---|
| LeftTable | The Left-side table expression to be used for Intersect. | |
| RightTable | The Right-side table expression to be used for Intersect. |