Forum Discussion
Missing Grand Total Column in Matrix table
Hello to all
I have a problem with my Matrix Visual or probably the Measure I am using. After a long time I finally managed to get it to show me the correct values in the context. However, I am now missing the grand total column. The companies are in the header row and the story keys are in the header column.
--------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------
Running Total (%) is a calculated column with the following formula:
I am a beginner in the Power BI area and would be grateful for any help!
Alina12 , when you use row context grand ttotal may not work as expected
Try a measure on top of your measure and use that in visual
M2 = sumx(Values('JiraExport_Sprints_SharepointFolder'[Company Name]) , [Rolling Total (%)])
or refer
2 Replies
- amitchandakSuper User
Alina12 , when you use row context grand ttotal may not work as expected
Try a measure on top of your measure and use that in visual
M2 = sumx(Values('JiraExport_Sprints_SharepointFolder'[Company Name]) , [Rolling Total (%)])
or refer
- Alina12Helper I
Unfortunately, this did not work because I do not have any CompanyNames in the JiraExport_Sprints_SharepointFolder table. To explain: The stories are not assigned to any company and should always be distributed to all companies via the percentage share (Rolling Total (%)).
Anyway, the Youtube video helped me a lot and at least the grand total column now works with this measure:
FINAL_DeliveredValue = IF(HASONEVALUE(Companies[CompanyName]),'KeyMeasures - DeliveredValue'[2Delivered Value],SUMX(Values(Companies[CompanyName]),'KeyMeasures - DeliveredValue'[2Delivered Value]))However, only the matrix table with the grand total column works (at least somewhat). As soon as I want to display the row grand total or create another visual (e.g. a simple table with companies and delivered value), it doesn't work again. What am I doing wrong? Can I optimize the measure 2Delivered Value or now also the FINAL_DeliveredValue so that I can use it without any problems and don't have to create a new measure for each visual?