Forum Discussion
Anonymous
5 years agoNot applicable
Color My World
I have made this table to color the dots on the map I have created. However, the colors that are shown on the maps are not the same ones that are specified in the hex codes: Property...
amitchandak
5 years agoSuper User
Anonymous , are you able to show dots for each Property Type.
If so either with the measure of column ((hex code need to with #)
Example measure you create one and use that in conditional formatting with the field value option. But that option will not be there with a legend
Brand Color = Switch( true(),
max('Item'[brand]) = "Brand 1" , "red",
max('Item'[brand]) = "Brand 2" , "blue",
max('Item'[brand]) = "Brand 3" , "green",
max('Item'[brand]) = "Brand 4" , "gray",
max('Item'[brand]) = "Brand 5" , "yellow",
max('Item'[brand]) = "Brand 6" , "orange",
max('Item'[brand]) = "Brand 7" , "brown",
max('Item'[brand]) = "Brand 8" , "Cyan",
max('Item'[brand]) = "Brand 9" , "Tan",
max('Item'[brand]) = "Brand 10" , "Violet",
max('Item'[brand]) = "Brand 11" , "Gold",
"silver"
)