Forum Discussion
Jacy
9 years agoFrequent Visitor
Date filter
I have two tables without a relationship, one with dates and another with a date and movements, I need that when I filter several dates in the isolated table, those dates are filtered on the move. Bu...
- 9 years ago
Jacy,
You may refer to the following DAX.
Measure = CALCULATE ( COUNT ( Funcionarios[DateAdm] ), FILTER ( Funcionarios, Funcionarios[DateAdm] IN ALLSELECTED ( Table2[Date] ) ) )
v-chuncz-msft
Community Support
9 years agoJacy,
You may refer to the following DAX.
Measure =
CALCULATE (
COUNT ( Funcionarios[DateAdm] ),
FILTER ( Funcionarios, Funcionarios[DateAdm] IN ALLSELECTED ( Table2[Date] ) )
)