Forum Discussion
How to exclude specifically when choosing different values in slicer?
Hi,
I'm wondering when Slicer Category="Skincare", I don't want the brands:Perfectdiary and Florasis shown here. But when selecting other Category, they should also show as normal.
Thanks
Yun
Hi YunJ ,
You can create a measure and drag it to table visual filter:
Measure = IF( SELECTEDVALUE([Category]) = "Skincare" &&MAX([Brand]) in{"Perfectdiary","Florasis"} ,0,1)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hi YunJ ,
Sorry for that I seem to have made a mistake, you need to change the filter to is 1.
Best Regards,
Dedmon Dai
9 Replies
- Pragati11
Super User
Hi YunJ ,
In that case, try the suggestion given by amitchandak . That should help you.
Thanks,
Pragati
- amitchandak
Super User
YunJ , this one will help
https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/