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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
18 | |
11 | |
7 | |
5 |