Forum Discussion

azaterol's avatar
azaterol
Helper V
3 years ago
Solved

Incorrect Summarize in Matrix

Hello everyone, I have a matrix. The numbers in the matrix are correct, the sum of 2022 in the second quantity column is wrong. It doesn't sum up how it should have been. Accordingly, the 96 in the ...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi azaterol ,

    I updated your sample pbix file(see the attachment), please create another new measure as below to replace the measure [previous year] onto the matrix:

    Measure = 
    SUMX (
        GROUPBY ( 'Date', 'Date'[Year], 'Date'[MonthNameShort] ),
        [previous year]
    )

    Best Regards