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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Eyal
Helper II
Helper II

Scatter plots from atributes

Hi,

 

I have a a large data set, arrange as a flat table that  iI use to control trends from diffrent attributes.

I want to creat a scatter plot to see the correlation between the attributes but could not figure out the orrect meassure.

Thank you

Eyal

Untitled picture.png

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @Eyal ,

 

You can try to use following measures:

HeightM=
CALCULATE (
    MAX ( Table[Value] ),
    FILTER ( ALLSELECTED ( Table ), [Attribute] = "Hight" ),
    VALUES ( Table[Lot] )
)


PriceM =
CALCULATE (
    MAX ( Table[Value] ),
    FILTER ( ALLSELECTED ( Table ), [Attribute] = "Price" ),
    VALUES ( Table[Lot] )
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

4 REPLIES 4
v-shex-msft
Community Support
Community Support

HI @Eyal ,

 

You can try to use following measures:

HeightM=
CALCULATE (
    MAX ( Table[Value] ),
    FILTER ( ALLSELECTED ( Table ), [Attribute] = "Hight" ),
    VALUES ( Table[Lot] )
)


PriceM =
CALCULATE (
    MAX ( Table[Value] ),
    FILTER ( ALLSELECTED ( Table ), [Attribute] = "Price" ),
    VALUES ( Table[Lot] )
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

@v-shex-msft 

 

Thank you very much, work very welll.

 

Eyal

v-shex-msft
Community Support
Community Support

Hi @Eyal ,

 

You can create a matrix visual to achieve your requirement.

 

Steps:
1. Drag Lot to row, attribute to column, value to value field.
2. Create a slicer with source of attribute column.
3. Choose attribute value which you wanted display on matrix visual.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

@v-shex-msft 

 

I am sorry, I was not clear enough.

The issue is not to get the matrix table.  I want to create two measures that I could use for a scatter plot visual and a correlation calculation.

 

Thanks for your help

Eyal

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors