Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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
Solved! Go to Solution.
Hi @DW868990 ,
This is my test table:
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])))
Is this the result you want?
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.
Thank you! Works great
Hi @DW868990 ,
This is my test table:
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])))
Is this the result you want?
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.