Forum Discussion

vincentakatoh's avatar
vincentakatoh
Helper IV
8 years ago
Solved

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 hei...
  • Anonymous's avatar
    Anonymous
    8 years ago

    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.


    Regards,
    Lydia