Forum Discussion
teatree
9 years agoFrequent Visitor
Duplicating Map Legend
Hi, My map seems to be duplicating each point on the map when both of my legends are selected. So, I'm placing a pointer on a map to say that one is a client and the other is not a client. Wh...
- 9 years ago
You are welcome! :smileyhappy:
One more thing you may consider is concatenating columns into a new column solely for Tooltip Use.
So first create a Column by concatenating the information you want to show in the Tooltip and then use this new column in a Measure!
Hope this helps! :smileyhappy:
BhaveshPatel
9 years agoSuper User
Try writing a measure with CALCULATE to filter out the Client Instance with Isn't Client instance. and use that measure on your map
Something like this..
Measure:=CALCULATE(COUNT(INSTANCE),FILTER(TABLE,TABLE[INSTANCENAME]="CLIENT")
and see how it goes..