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
Tiphany01
Frequent Visitor

Matrix multiple measures display

Dear all,

I have the below data in excel and I would like to create a pivot in PowerBI as shown below. But I am unable to achieve the view I need. (Column Header interchange) The below is just an example :

 

Sample data:

AnimalsTypeLegsWeight
LionWild4200
TigerWild4220
DogDomestic415
CatDomestic45

 

Currently in PowerBI:

Tiphany01_0-1634557521682.png

 

Desired View:

Tiphany01_1-1634557559021.png

I have come across few posts suggesting unpivotting / calculation groups as a probable solution. But the dataset is of huge capacity and dont think both are feasable. Are there any other ways to achieve the desired view? 

1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @Tiphany01 

Thanks for reaching out to us.

You can try this, create the table

vxiaotang_0-1634806581446.png

Table1 = GENERATE(
    VALUES('Table'[Animals]),
    {"Legs","Weight"})

then create a measure

Measure = 
    IF(MAX([Value])="Weight",
        CALCULATE(SUM('Table'[Weight]),FILTER('Table',[Type]=MAX([Type])&&[Animals]=MAX('Table1'[Animals]))),
        CALCULATE(SUM('Table'[Legs]),FILTER('Table',[Type]=MAX([Type])&&[Animals]=MAX('Table1'[Animals]))))

result

vxiaotang_1-1634806637340.png

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @Tiphany01 

Thanks for reaching out to us.

You can try this, create the table

vxiaotang_0-1634806581446.png

Table1 = GENERATE(
    VALUES('Table'[Animals]),
    {"Legs","Weight"})

then create a measure

Measure = 
    IF(MAX([Value])="Weight",
        CALCULATE(SUM('Table'[Weight]),FILTER('Table',[Type]=MAX([Type])&&[Animals]=MAX('Table1'[Animals]))),
        CALCULATE(SUM('Table'[Legs]),FILTER('Table',[Type]=MAX([Type])&&[Animals]=MAX('Table1'[Animals]))))

result

vxiaotang_1-1634806637340.png

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

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.