Forum Discussion
Naveennegi119
7 years agoHelper III
Slicer data hide in second slicer
Hi All,
I have two same slicer in power bi. if i select data from first slicer, then the second slicer showing same data
but i want to show in second slicer except data of first slicer selected data.
| first slicer | Second Slicer |
| A if A selected | B |
| B | C |
| C | D |
| D | E |
| E | F |
| F | G |
| G | H |
| H | I |
| I |
Best regards,
NICK
It seems there is no better way to show except data in slicer. But it can be show in table visual. For example: You can make a copy table to get the first slicer value. Then create a measure to get the except data.
Second = CALCULATE ( MAX ( 'Table'[first slicer] ), FILTER ( 'Table', 'Table'[first slicer] <> SELECTEDVALUE ( FirstSlicer[first slicer] ) ) )Regards,
Cherie
2 Replies
- v-cherch-msftMicrosoft Employee
It seems there is no better way to show except data in slicer. But it can be show in table visual. For example: You can make a copy table to get the first slicer value. Then create a measure to get the except data.
Second = CALCULATE ( MAX ( 'Table'[first slicer] ), FILTER ( 'Table', 'Table'[first slicer] <> SELECTEDVALUE ( FirstSlicer[first slicer] ) ) )Regards,
Cherie
- Naveennegi119Helper III