Forum Discussion
Check if Row in Table Exists in Another Inactive Related Table
- 7 years ago
Hi Anonymous
I'm not sure I completely understand what you are aiming for but let's try this:
1. Place a matrix visual in your report with 'Items'[Name] in rows
2. Create a measure to determine what items will be shown:
ShowMeasure = IF ( NOT ( SELECTEDVALUE ( 'Items'[Name] ) IN VALUES ( 'Filtered Items'[Name] ) ), 1 )3. Place the measure in the visual level filters of the matrix visual and select to 'Show items when the value:'--> is 1
By doing that, you will filter out the names that are not selected in the slicer
Hi Anonymous
I'm not sure I completely understand what you are aiming for but let's try this:
1. Place a matrix visual in your report with 'Items'[Name] in rows
2. Create a measure to determine what items will be shown:
ShowMeasure =
IF (
NOT ( SELECTEDVALUE ( 'Items'[Name] ) IN VALUES ( 'Filtered Items'[Name] ) ),
1
)
3. Place the measure in the visual level filters of the matrix visual and select to 'Show items when the value:'--> is 1
By doing that, you will filter out the names that are not selected in the slicer