Forum Discussion

palunel's avatar
palunel
Icon for Helper I rankHelper I
9 years ago
Solved

Inconsistent Calculated Measures

"I get inconssistent results when using calucalted measures.  In the table below the last 5 coloumns are all calculated measures.  Coloumns "CAPEX", "OPEX" and "Days" totals completely incorrect...
  • GilbertQ's avatar
    9 years ago

    Hi palunel

     

    If the totals are incorrect on your Matrix but correct for each row, then it is quite possible that it is due to the way the calculation is being filtered correctly for each row.

    But when you get to the Totals, there is no row context for your measure to calculate the total correctly.

     

    I would suggest reading this blog post by Power Pivot Pro where they do a great job explaining why the values are correct in the Row context, but then appear to be wrong in the Totals. When essentially what you have asked the measure to do, is doing what it should.

     

    They have a solution which I have used multiple times in order to get the correct values based on if it is on a Row or a Total.

     

    Here is their DAX solution, with the blog post link here: Subtotals and Grand Totals That Add Up “Correctly”

     

    [Sales per Day] = 
    IF(COUNTROWS(VALUES(Category[Name]))=1,
       [Sales],
       SUMX(VALUES(Category[Name]), [Sales])
    )