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
Kedar_Pande
1 year agoSuper User
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