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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
vincentakatoh
Helper IV
Helper IV

Scatter Chart: Comparing values in same column

Hi, 

Below is my sample data, can I create a scatter chart "length vs width"? 

 

Objective: For the same serial number, is there a trendline between length vs width, length vs height, width vs height

 

Actul data has more >50 parameters and millions of rows. 

 

serial numberParameterValue
1111Length10.1
2222Length10.2
3333Length10.1
1111width5.2
2222width5.3
3333width5.1
1111height2.1
2222height2.2
3333height2.4
1 ACCEPTED SOLUTION
Anonymous
Not applicable

@vincentakatoh,

Create the following measures in your table.

LengthMeasure = CALCULATE(SUM('Length table'[Value]),FILTER('Length table','Length table'[Parameter]="Length"))
widthmeasure = CALCULATE(SUM('Length table'[Value]),FILTER('Length table','Length table'[Parameter]="width"))
heightmeasure = CALCULATE(SUM('Length table'[Value]),FILTER('Length table','Length table'[Parameter]="height"))

Then create scatter chart as shown in the following screenshot. Please note that in this case, it is not possible to parameter slicer to filter the charts.
1.JPG

Regards,
Lydia

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

So, what would be an example of what you would like to see as output?



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler,

 

Updated table values and below is a sample chart (length vs width). 

 

At some point, I will also need a slicer to select "length" and "width".

 

serial numberParameterValue
1111Length14
2222Length15
3333Length14
4444Length9
5555Length3
1111width19
2222width20
3333width19
4444width14
5555width8
1111height22
2222height23
3333height22
4444height17
5555height11

 

 2017-10-17 20_56_23-Start.jpg 

Anonymous
Not applicable

@vincentakatoh,

Create the following measures in your table.

LengthMeasure = CALCULATE(SUM('Length table'[Value]),FILTER('Length table','Length table'[Parameter]="Length"))
widthmeasure = CALCULATE(SUM('Length table'[Value]),FILTER('Length table','Length table'[Parameter]="width"))
heightmeasure = CALCULATE(SUM('Length table'[Value]),FILTER('Length table','Length table'[Parameter]="height"))

Then create scatter chart as shown in the following screenshot. Please note that in this case, it is not possible to parameter slicer to filter the charts.
1.JPG

Regards,
Lydia

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors