Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi guys, I am trying to recreate this example in power bi in a scatter plot chart. I have my 2 values for x and y ranked across all my customers but when I include customer name or customer numbers (distinct values) within the details segment of the visual I either get an error message or have only one value displayed which I assume represents an average. Any ideas how to recreate this?
Solved! Go to Solution.
Hi @cdawidow ,
Based on my test, if you choose the aggreation type as 'Don't summarize' for x-axis and y-axis and put field in Legend or Details, you may get a error message like this:
If so, try to change the aggreation type into Sum to show it in the Scatter plot chart.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @cdawidow ,
Based on my test, if you choose the aggreation type as 'Don't summarize' for x-axis and y-axis and put field in Legend or Details, you may get a error message like this:
If so, try to change the aggreation type into Sum to show it in the Scatter plot chart.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
@cdawidow , Please create a color measure like this and use this with option "field" in conditional formatting
here Margin % is like you NPS
Color Dot =
var _avgDisc = CALCULATE([Discount %],ALL(Retail))
var _avgMargin = CALCULATE([Margin %],ALL(Retail))
return switch(TRUE(),
[Margin %]>_avgMargin && [Discount %] <_avgDisc , "Green",
[Margin %]>_avgMargin && [Discount %] >_avgDisc , "Blue",
[Margin %]<_avgMargin && [Discount %] <_avgDisc , "Yellow",
[Margin %]<_avgMargin && [Discount %] >_avgDisc , "Red", "Black")
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-num...
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
Hi @cdawidow ,
Try moving your Customer Name to LEGEND section rather than Details section.
Thanks,
Pragati
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 38 | |
| 35 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 58 | |
| 28 | |
| 27 | |
| 25 |