Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
DW868990
Helper IV
Helper IV

Bubble Size of Scatter

Hi,

 

I have a scatter chart which has multiple data points on, now i have many data points in the exact same location, so the data points are sat on top of each other.

 

I am looking for a measure that controls the bubble size via count of locations in that data point, so the more points in the same location, the bigger the bubble.

 

Is this possible?

 

Thanks in advance.

 

JJ

1 ACCEPTED SOLUTION
v-yadongf-msft
Community Support
Community Support

Hi @DW868990 ,

 

This is my test table:

vyadongfmsft_0-1664439785789.png

 

Create a new column to count the number of duplicate values for each ID.

Size = CALCULATE(COUNT('Table'[Value]),FILTER('Table','Table'[Value]= EARLIER('Table'[Value]) && 'Table'[ID] = EARLIER('Table'[ID])))

vyadongfmsft_1-1664439884063.png

 

Is this the result you want?

vyadongfmsft_2-1664439934521.png

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
DW868990
Helper IV
Helper IV

Thank you! Works great

v-yadongf-msft
Community Support
Community Support

Hi @DW868990 ,

 

This is my test table:

vyadongfmsft_0-1664439785789.png

 

Create a new column to count the number of duplicate values for each ID.

Size = CALCULATE(COUNT('Table'[Value]),FILTER('Table','Table'[Value]= EARLIER('Table'[Value]) && 'Table'[ID] = EARLIER('Table'[ID])))

vyadongfmsft_1-1664439884063.png

 

Is this the result you want?

vyadongfmsft_2-1664439934521.png

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.