Forum Discussion
Define aggregation at total
- 9 years ago
Hello,
You may use following formula:
KPI1% =
DIVIDE (
SUM ( Table1[Export] ) - SUM ( Table1[Import] ),
SUM ( Table1[Export] )
)KPI2% =
DIVIDE (
SUMX ( Table1, ABS ( Table1[Export] - Table1[Import] ) ),
SUM ( Table1[Export] )
)
Hello,
You may use following formula:
KPI1% =
DIVIDE (
SUM ( Table1[Export] ) - SUM ( Table1[Import] ),
SUM ( Table1[Export] )
)
KPI2% =
DIVIDE (
SUMX ( Table1, ABS ( Table1[Export] - Table1[Import] ) ),
SUM ( Table1[Export] )
)
- Omega9 years agoImpactful Individual
Thanks a lot for the response. Small question: What summarization I have to choose? As you know, total row appears once the values are summarized.
- LaurentCouartou9 years agoSolution Supplier
The measures suggested by EminUZUN already define the aggregation to be used.
You have to use these measures instead of the source columns. In fact, you may even remove the columns from your model.
- Omega9 years agoImpactful Individual
Thanks a lot for clarification :)