Forum Discussion
Ignore filter on Azure map visual
- 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
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
Thanks for your reply.
I have a legend variable which is a text variable as has values like "100-150", "150-200" and so on and I assign colors based on those categories. I am unable to use the measure in the legend field.