Forum Discussion

marcss44's avatar
marcss44
Helper I
2 years ago
Solved

Add from previous row value in a Matrix

I've got a Matrix with months in the column header and days in the row header and the value are the items count. For the 138 value on ene column and 1 row, i need to get the SUM of 138 and the...
  • TomMartens's avatar
    TomMartens
    2 years ago

    Hey marcss44 ,

     

    here you go:

    TotalValue Of DistinctCounts = 
    SUMX(
        ALLSELECTED( 'TablaDifDias'[Value] )
        , [Some kind of DistinctCount]
    )

     

    Regards,

    Tom