Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi all,
Is it possible to have a filter only affect certain data types on a map visual? I am creating a map with client sites, technicians, and subcontractors, and I want to be able to filter the client sites by client without having the technician / subcontractor data disappear (They are not related). Any advise would be greatly appreciated. Thank you!
Solved! Go to Solution.
Hi @aclifton ,
Sounds like you need a disconnected table to specifically filter the fields you need.
For example, the Measure returns the sum of the values based on the selctions from the slicer.
Measure = CALCULATE(SUM('Table'[Value]),FILTER(ALLSELECTED('Table'),[ID] IN ALLSELECTED('Table 2'[ID])))
The field of the slicer is from the Table 2 created by dax.
Although the IDs are filtered in the slicer, the IDs of the table visual are retained.
You can also remove ALLSLECTED as follows, which will return the value of the corresponding ID.
Measure 2 = CALCULATE(SUM('Table'[Value]),FILTER('Table',[ID] in ALLSELECTED('Table 2'[ID])))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @aclifton ,
Sounds like you need a disconnected table to specifically filter the fields you need.
For example, the Measure returns the sum of the values based on the selctions from the slicer.
Measure = CALCULATE(SUM('Table'[Value]),FILTER(ALLSELECTED('Table'),[ID] IN ALLSELECTED('Table 2'[ID])))
The field of the slicer is from the Table 2 created by dax.
Although the IDs are filtered in the slicer, the IDs of the table visual are retained.
You can also remove ALLSLECTED as follows, which will return the value of the corresponding ID.
Measure 2 = CALCULATE(SUM('Table'[Value]),FILTER('Table',[ID] in ALLSELECTED('Table 2'[ID])))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
65 | |
63 | |
52 | |
37 | |
36 |
User | Count |
---|---|
79 | |
67 | |
60 | |
45 | |
45 |