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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
MylèneB
Helper II
Helper II

Creating a matrix with multiple measures to display a distribution

Hi all,

 

I have trouble creating a matrix where I would like to put different measures I calculated to show a distribution.

 

I have this first table where I can see the names of the people and their score to 3 different tests:

NameScore1Score2Score3
a807060
b505050
c203010
d802050
e709080
f101020

 

I would like to create a matrix where I can see the distribution of each score under it, that would look like this :

 Score1Score2Score3
>=6050%33%33%
40-6017%17%33%
<4033%50%33%


For now, I can calculate each of the value, but I don't know how to integrate them in one table.

The measures I use are this, for each score:

Score1 60 and up = CALCULATE(COUNT('Sheet1'[userid]);FILTER('Sheet1';'Sheet1'[Score1]>=60)

Score1 40-60 = CALCULATE(COUNT('Sheet1'[userid]);FILTER('Sheet1';'Sheet1'[Score1]>=40);'Sheet1'[Score1]<60)
Score1 40 and below = CALCULATE(COUNT('Sheet1'[userid]);FILTER('Sheet1';'Sheet1'[Score1]<40)
 
Does someone know how to do this?
 
 
1 ACCEPTED SOLUTION
TeigeGao
Solution Sage
Solution Sage

Hi @MylèneB ,

In your scenario, we need to unpivot the table using the following query in Edit Queries:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WSlTSUbIwABLmIMLMQClWJ1opCcg0NUAiQILJQKYRiG8MIgwhgikw7UZIKlNhxlkaQKRBgmkQTVACqDw2FgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Name = _t, Score1 = _t, Score2 = _t, Score3 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Name", type text}, {"Score1", Int64.Type}, {"Score2", Int64.Type}, {"Score3", Int64.Type}}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Name"}, "Attribute", "Value")
in
    #"Unpivoted Other Columns"

Then we will get a table like below:
PBIDesktop_Dj5tvH7VWy.png

Then we can create a calculated column using the following DAX query:

Column =
IF (
    'Table'[Value] >= 60,
    ">=60",
    IF ( 'Table'[Value] >= 40 && 'Table'[Value] < 60, "40-60", "<40" )
)

After that, we can create a measure using the following DAX query:

Measure 2 =
DIVIDE (
    COUNTROWS ( 'Table' ),
    CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table'[Column] ) )
)

Then drag the fields and measure to matrix, we will get a table like below:

PBIDesktop_kn6U2jEPj1.png

Here is the pbix file, please refer to it: https://1drv.ms/u/s!AjytBuzIG5m9ti-8yXcTvKacfZLN

Best Regards,

Teige

View solution in original post

2 REPLIES 2
TeigeGao
Solution Sage
Solution Sage

Hi @MylèneB ,

In your scenario, we need to unpivot the table using the following query in Edit Queries:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WSlTSUbIwABLmIMLMQClWJ1opCcg0NUAiQILJQKYRiG8MIgwhgikw7UZIKlNhxlkaQKRBgmkQTVACqDw2FgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Name = _t, Score1 = _t, Score2 = _t, Score3 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Name", type text}, {"Score1", Int64.Type}, {"Score2", Int64.Type}, {"Score3", Int64.Type}}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Name"}, "Attribute", "Value")
in
    #"Unpivoted Other Columns"

Then we will get a table like below:
PBIDesktop_Dj5tvH7VWy.png

Then we can create a calculated column using the following DAX query:

Column =
IF (
    'Table'[Value] >= 60,
    ">=60",
    IF ( 'Table'[Value] >= 40 && 'Table'[Value] < 60, "40-60", "<40" )
)

After that, we can create a measure using the following DAX query:

Measure 2 =
DIVIDE (
    COUNTROWS ( 'Table' ),
    CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table'[Column] ) )
)

Then drag the fields and measure to matrix, we will get a table like below:

PBIDesktop_kn6U2jEPj1.png

Here is the pbix file, please refer to it: https://1drv.ms/u/s!AjytBuzIG5m9ti-8yXcTvKacfZLN

Best Regards,

Teige

Thank you so much, it worked really well!

 

As a second step I would want to be able to filter this matrix with slicers.

For example, I have different persons in different groups and I would like to be able to look only at group A and that my distribution matrix is also measuring only group A, is it possible to do this?

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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