Forum Discussion

Kevin454's avatar
Kevin454
New Member
3 years ago
Solved

Accumulative

Need a column in table that accumulates inventory by item row by row    for example  Items.        Inv.        Accumulated inv Mazda        1          1 Mazda        1.         2 Mazda.       3...
  • Nathaniel_C's avatar
    3 years ago

    Hi Kevin454 
    If I understand your measure request, please try this:

    Inventory measure = 
    
    Var _index = MAX(Inventory[Index])
    
    var _items = MAX(Inventory[Items])
    
    var _calc = CALCULATE(SUM(Inventory[Inventory]),FILTER(ALL(Inventory),Inventory[Index]<=_index && Inventory[Items]=_items))
    return _calc


    Let me know if you have any questions.

    If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos πŸ‘are nice too.
    Nathaniel