Forum Discussion
billybaroo
8 years agoNew Member
Linked/Filtered Tables in a Report
Hello, new user with a basic (i think) question. I have 2 tables in a report - Table A with summary data, Table B with detailed data - both tables are using the same data source (a single table). W...
- 8 years ago
You may add a measure to Table B.
Measure = IF ( SELECTEDVALUE ( 'Table B'[Column1] ) = SELECTEDVALUE ( 'Table A'[Column1] ), 1 )
v-chuncz-msft
Community Support
8 years ago
You may add a measure to Table B.
Measure =
IF (
SELECTEDVALUE ( 'Table B'[Column1] ) = SELECTEDVALUE ( 'Table A'[Column1] ),
1
)
Anonymous
4 years agoNot applicable
I have the same use-case, but the solution isn't working correctly for me.
Is there any other way to approach this problem?