Forum Discussion
Visual filter on a table dependent on another table
- Anonymous3 years ago
Hi jdalmass ,
According to your code, I think they are calculated columns. As far as I know, calculated column couldn't be dynamic by slicer
If you want to get dynamic result which is filtered by slicer, I suggest you to create measures.
Done = IF(MAX('Y'[Date]) <= TODAY(), CALCULATE(COUNT('X'[Done Date]), FILTER('X','X'[Done Date]=MAX('Y'[Date]))))Received = IF(MAX('Y'[Date]) <= TODAY(), CALCULATE(COUNT('X'[Received Date]), FILTER('X','X'[Received Date]= MAX('Y'[Date]))))Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi jdalmass ,
According to your code, I think they are calculated columns. As far as I know, calculated column couldn't be dynamic by slicer
If you want to get dynamic result which is filtered by slicer, I suggest you to create measures.
Done =
IF(MAX('Y'[Date]) <= TODAY(),
CALCULATE(COUNT('X'[Done Date]),
FILTER('X','X'[Done Date]=MAX('Y'[Date]))))Received =
IF(MAX('Y'[Date]) <= TODAY(),
CALCULATE(COUNT('X'[Received Date]),
FILTER('X','X'[Received Date]= MAX('Y'[Date]))))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.