DAX Filter - ISCROSSFILTERED function



Description

Returns TRUE when columnName or another column in the same or related table is being filtered.

Syntax

ISCROSSFILTERED (<columnName>) 

Parameters

Sr.No. Parameter & Description
1

columnName

The name of a column in a table.

It cannot be an expression.

Return Value

TRUE or FALSE.

Remarks

  • A column columnName is said to be cross-filtered when a filter applied to another column in the same table or in a related table affects columnName by filtering it.

  • A column is said to be filtered directly when the filter or filters apply over the column.

You can use DAX ISFILTERED function to find if a column is filtered directly.

Example

= ISCROSSFILTERED (Sales) 
dax_functions_filter.htm
Advertisements