Forum Discussion
edt4444
7 years agoFrequent Visitor
Map Coloring Based on Slicer Selection
Hello, I'm looking for a way to color a map based on a slicer selection. If the map below represented customer locations, I would like the bubble for the selected customer to be colored different...
- 7 years ago
Hi edt4444
You may create a slicer table and use below measure.Attached sample file for your reference.
Measure = IF ( SELECTEDVALUE ( Slicer[Country] ) = MAX ( Table1[Country] ), SELECTEDVALUE ( Slicer[Value] ) )Regards,
v-cherch-msft
7 years agoMicrosoft Employee
Hi edt4444
You may create a slicer table and use below measure.Attached sample file for your reference.
Measure =
IF (
SELECTEDVALUE ( Slicer[Country] ) = MAX ( Table1[Country] ),
SELECTEDVALUE ( Slicer[Value] )
)
Regards,
edt4444
7 years agoFrequent Visitor
Is it possible to use this with the ArcGIS Maps visual? The map visual you used is not working well with the large amount of data I have.