Forum Discussion
Need Help - Pivot table
- 7 years ago
Hi,
Try these measures:
Met = CALCULATE(COUNTROWS(Table1),Table1[MeasurementStatus]="Met")
Missed = CALCULATE(COUNTROWS(Table1),Table1[MeasurementStatus]="Missed")
Total = [Met]+[Missed]
Performance (%) = [Met]/[Missed]
Hope this helps.
- 7 years ago
Hi ,
Please find the attached screen shot.Kindly have a look and confirm me if anything required.IF performance percentage needs to calcualte, we need create few measure.New is the table name
With the help of ashish mathur code i ahve created four measure.
Please find below the code as he given:
Met = CALCULATE(COUNTROWS(New),New[MeasurementStatus]="Met")Missed = CALCULATE(COUNTROWS(New),New[MeasurementStatus]="Missed")Total = 'New'[Met]+'New'[Missed]Performance percentage = 'New'[Met]/'New'[Total]Once we created kindly use matrix tableThanks
Hi Zaky
You can use the matrix visual. It works pretty much like a pivot table
Hi AIB,
I did used matrix visual, but the question is how to get percentage for each Priority rows.
- AlB7 years agoCommunity Champion
Place [Priority] in the rows of the matrix and [Performance Achievement] on values of the matrix?
- Vishnu_19807 years agoFrequent Visitor
Hi
PLease find the screen of the table and confirm it satisfies your requirement
If this not your requirement, kindly share some sample output
- Zaky7 years agoHelper IV
Hi Vishnu,
Yes, I want to get the percentage performance of the ticket total.
Thanks