Forum Discussion
Filtering a slicer (no relationship_
Hi,
Looking for some help to see if this can be done. Conceptually, I need to filter a dimension table based on a selection on another dimension table. These two tables are unable to be linked together as one of relationships will be made inactive.
In the PBIX example attached, I want the Location slicer selection to filter the Salesperson slicer and show only the 5 salespersons that are in that location.
Thanks Jihwan_Kim
That would be an acceptable solution if I am trying to find salespeople with sales, the slicer should show users filtered by location.
I found the solution in another post and I have updated the PBIX - Filtering a slicer example
DAX used
Location Filters Users = IF ( MAX ( 'Salespeople'[Location] ) IN VALUES ( 'Sales Location'[SalesLocation] ), 1, 0 )
6 Replies
- parry2kSuper User
DarrenLau check this video on my YouTube channel which talks about something similar. https://youtu.be/XXVRwvni4Ms
✨ Follow us on LinkedIn and to our YouTube channel
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
- Jihwan_KimSuper User
Hi,
Please check the below picture and the attached pbix file.
1. create a measure like below.
filter name by location: =IF ( COUNTROWS ( VALUES ( Sales[Value] ) ) > 0, 1, 0 )2. Put this measure into the Filterpane "Filter on this visual"3. configure like the picture.- DarrenLauAdvocate I
Thanks Jihwan_Kim
That would be an acceptable solution if I am trying to find salespeople with sales, the slicer should show users filtered by location.
I found the solution in another post and I have updated the PBIX - Filtering a slicer example
DAX used
Location Filters Users = IF ( MAX ( 'Salespeople'[Location] ) IN VALUES ( 'Sales Location'[SalesLocation] ), 1, 0 )- iBusinessBIKudo Collector
Awesome, thanks a lot!