Forum Discussion

edt4444's avatar
edt4444
Frequent Visitor
7 years ago
Solved

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...
  • v-cherch-msft's avatar
    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,