Forum Discussion
AmineGatou
4 years agoFrequent Visitor
PowerBI Map View Filtered along side with Unfiltred Data
Hello Everyone I'm struggling with this I don't know how to achieve it. So Basically I have a map with bubbles in it Everything Normal at this point. What I need to do is when I filter usi...
- Anonymous4 years ago
Hi AmineGatou ,
You will need to create an indenpenet slicer table like below:
slicer = distinct('table'[locations])
Then create a measure like below and add it to conditional formatting value.
https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-table-formatting
Measure = IF(SELECTEDVALUE('Table'[location]) in VALUES('slicer'[location]),"red","green")
Best Regards,
Jay
- Anonymous4 years ago
Hi AmineGatou ,
If you have other slicers, add the filter conditions to the measure.
Measure = IF(SELECTEDVALUE('Table'[location]) in VALUES('slicer'[location]&&'table'[column] in Values('slicer2'[column])),"red","green")
Best Regards,
Jay
houssem33
3 years agoFrequent Visitor
Hello did you get the solution ? because i have the same problem here
AmineGatou
3 years agoFrequent Visitor
Unfortunately, i couldn't find a solution to it. Still waiting.