Forum Discussion
Comparison with SIblings
- 8 years ago
Anonymous
File attached as well
Anonymous
Try this technique
First create a calculated table..From Modelling Tab>>New Table
This will serve as store slicer
StoreSlicer = VALUES ( Table1[Store ] )
Now create this MEASURE
Measure =
VAR StoreSelected =
SELECTEDVALUE ( 'StoreSlicer'[Store ] )
RETURN
CALCULATE ( MIN ( Table1[City] ), Table1[Store ] = StoreSelected )Not put this MEASURE in VISUAL Filter and select ISNOTBLANK
Anonymous
File attached as well
- Anonymous8 years agoNot applicable
Thanks Zubair for your help.
Would it be possible to do without a calculated table, on the original table.
As every new table in the model would require the relationships to be build.
- Zubair_Muhammad8 years ago
Community Champion
HI Anonymous
I think it is not possible because a slicer from the same table will filter the values selected.
But may be there is a way I am not aware of.
Nevertheless, you do not need to establish relationship between calculated table and your datamodel.
In my example, i did not create any relationship
- Anonymous8 years agoNot applicable
Hi Zubair,
I did notice that there was no relationship between tables.
However that Store filter is a global filter , filtering other visuals as well on the report. It wont be possible to add another Slicer coming from calculated table
Thankg again for your help.