Forum Discussion
GoingIncognito
Advocate III
6 years agoFilter one table to only include values that have equaling values in two columns
My question is fairly simple: On a report page all I need to display is a table. And this table receives all the rows from database table as is. Only one filter needs to be used: Table[Date1] = Tabl...
- 6 years ago
You can use the below as a measure
Measure = SUMX( 'Table', INT( 'Table'[x] = 'Table'[y] ) )And use the Measure to filter Visual table like.
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
LinkedIn
Mariusz
Community Champion
6 years ago
You can use the below as a measure
Measure = SUMX( 'Table', INT( 'Table'[x] = 'Table'[y] ) )
And use the Measure to filter Visual table like.
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
LinkedIn
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
GoingIncognito
Advocate III
6 years agoYass, thank you! Your solution is of the outmost absolute brilliance, thank you!