Forum Discussion

azj5001's avatar
azj5001
New Member
6 years ago
Solved

Cumulative matrix (Value same for all rows giving me total)

I'm trying to figure out how to do a commulative total in a matrix. My goal is to have June = May+June; July =May+June+July etc.  I found some solutions online but I've hit a brick wall. I'm trying t...
  • parry2k's avatar
    6 years ago

    azj5001 As a best practice, add date dimension in your model and use it for and time intelligence calculations. Once the date dimension is added, mark it as a date table on table tools.

    https://perytus.com/2020/05/22/create-a-basic-date-table-in-your-data-model-for-time-intelligence-calculations/

     

    Once you have date dimension, you can replace your measure as below

     

    Ending Inv = CALCULATE(
        SUM('Planning Model (POs - SO& NRP)'[POs (units]),
        FILTER(
                ALL(DateTable[Date]),
                DateTable[Date] <= MAX(DateTable[Date])
        )
        )

     

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.