Forum Discussion

Haitham Darweesh's avatar
Haitham Darweesh
Copper Contributor
Mar 10, 2018
Solved

Pivot table shaow parentage as grand subtotal

helllo  I need to show values  as a percentage but not as grant total, it must be as grant subtotal as shown in the image    
  • SergeiBaklan's avatar
    SergeiBaklan
    Mar 10, 2018

    Hi Haitham,

     

    I see, sorry for misunderstanding.

     

    If creating pivot table you added your data to data model (usually default option) I'd add couple of measure (in PivotTable fields window right click on table name) like

    PercentYes:=CALCULATE(SUM(MyTable[value]),MyTable[answers]="yes")/CALCULATE(SUM(MyTable[value]),ALL(MyTable[subcategory],MyTable[answers]))

    similar for "no", and show them instead of number of yes and no. Not to forget to apply % format to the measure on creating.

     

    Not sure about your field names.

     

Resources