Forum Discussion
DrillDownBI
1 year agoHelper I
Measure Total, again
Hi, this is my third day struggling with measure total, time to get some help. I have 3 columns in my matrix tabel that should be summarized row by row, and then ofcource sum up everything in the t...
- 1 year ago
I finally find a solution for this.
I use summarize in a temp table and then sumx like below DAX code.
VAR _stdInflation =Summarize('Calendar', --Table'Calendar'[Period], --Group by"@value", --name of expressionCALCULATE(SUM(FactTable[ActualPrel]),SAMEPERIODLASTYEAR('Calendar'[Period])) ,"@value2",CALCULATE(SUM(Summary[Inflation])))
DrillDownBI
1 year agoHelper I
I finally find a solution for this.
I use summarize in a temp table and then sumx like below DAX code.
VAR _stdInflation =
Summarize(
'Calendar', --Table
'Calendar'[Period], --Group by
"@value", --name of expression
CALCULATE(
SUM(FactTable[ActualPrel]),
SAMEPERIODLASTYEAR('Calendar'[Period])
) ,
"@value2",
CALCULATE(
SUM(Summary[Inflation])
)
)
- v-aatheeque1 year agoCommunity Support
Hi DrillDownBI ,
Thank you so much for sharing your solution.
It’s great that you included your DAX code here, as it could really help other community members facing the same challenge.
Feel free to keep exploring and posting your questions or solutions here in the Fabric Community your contributions are truly valuable!