Forum Discussion

WorkHard's avatar
WorkHard
Helper V
6 years ago
Solved

Plot each point with the same coordinate as a separate bubble

Let's say I have a table with a Project ID, Project Name, Project Type, Latitude and Longitude.

 

I'm displaying the legend as the Project Type and I have multiple projects that have the same exact coordinates.

Currently, the map plots all the Projects that have the same Project type with the same coordinates in one single bubble which is not the intended result. Instead, I'd like each point to represent each Project even if they are at the same location.

 

The only way I can achieve that is if I put the Project ID in the legend but then my legend is absolutely enormous and the map has way too many colors for each ID.

 

  • I guess if no one has a better idea, the way I currently solved it is to create a custom column and add a random number to the end of the coordinate which will force the map to plot each bubble separately. They are still basically at the same location but now I can see multiple "rings" for each Project.

     

    DAX:

     

    RandomizeLat = IF(len('Projects'[Latitude])>0,'Projects'[Latitude]&RANDBETWEEN(1,1000),BLANK())

     

     

4 Replies