Forum Discussion
KMalik
1 year agoFrequent Visitor
Ignore filter on Azure map visual
Hi everyone, I have a slicer for countries on page 1 and it applies to all pages on my dashboard. However, I don't want it applied just on an azure map visual on one of the pages. I have a filled...
- 1 year ago
Create a new measure that removes the slicer context from the Country filter using ALL in DAX.
Country_Ignored_Measure =
CALCULATE(SUM('YourTable'[YourMetricColumn]), ALL('YourTable'[Country]))Replace 'YourTable'[YourMetricColumn] with the actual table and metric youβre plotting on the map.
π If this helped, a Kudos π or Solution mark would be great! π
Cheers,
Kedar
Connect on LinkedIn
KMalik
1 year agoFrequent Visitor
Thanks for your reply but edit intercations does show the "none" option on my map and just shows the filter applied. That's why looking for an alternate solution. Thanks
Bibiano_Geraldo
1 year agoSuper User
Thank you for your reply, in this case i think that Kedar_Pande solution its great for you.