Forum Discussion
Anonymous
3 years agoNot applicable
Divide Function Measure in Matrix Percentage Overall Total Incorrect
I have reviewed numerous topics in this forum, but haven't found one that fits my issue exactly. I have two measures that I've created to use with the DIVIDE function to obtain the overall % total. ...
- Anonymous3 years ago
I have figured out what I was doing wrong. The problem was MeasureB. I have fixed MeasureB and it looks like this:
CALCULATE(SUM('Revenue_Actuals Plan'[Plan(BG)]),FILTER('Calendar','Calendar'[Date] <= TODAY() &&YEAR('Calendar'[Date]) <> 2022))Now MeasureC is working perfectly!!!I hope this helps someone else in the future.Please close this question.
Anonymous
3 years agoNot applicable
I have figured out what I was doing wrong. The problem was MeasureB. I have fixed MeasureB and it looks like this:
CALCULATE(
SUM('Revenue_Actuals Plan'[Plan(BG)]),
FILTER('Calendar',
'Calendar'[Date] <= TODAY() &&
YEAR('Calendar'[Date]) <> 2022
)
)
Now MeasureC is working perfectly!!!
I hope this helps someone else in the future.
Please close this question.