Forum Discussion
Monthly Percentage
- 10 years ago
The difference is, that my [MonthlyValue] is e measure, and yours is the column name without aggregation. Put a SUM() around your "Table13[Monthly Value]" --> SUM( Table13[Monthly Value] ).
The complete formula look like this:
=SUM( Table13[Monthly Value] ) /
CALCULATE(
SUM( Table13[Monthly Value] ),
ALL(Tabelle13[Column1])
)
Does it work now? Is column1 the column with the customer?! Never use Columns without an aggregator (eg. SUM())!
Regards,
Lars
The difference is, that my [MonthlyValue] is e measure, and yours is the column name without aggregation. Put a SUM() around your "Table13[Monthly Value]" --> SUM( Table13[Monthly Value] ).
The complete formula look like this:
=SUM( Table13[Monthly Value] ) /
CALCULATE(
SUM( Table13[Monthly Value] ),
ALL(Tabelle13[Column1])
)
Does it work now? Is column1 the column with the customer?! Never use Columns without an aggregator (eg. SUM())!
Regards,
Lars
Hello SabineOussi
The last LarsSchreiber formula is working pretty well !
Here's the screenshot of what I did :
The model :
the formula
And the result :
Sébastien