Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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. 5
Acura. 1. 1
Acura 1. 2
How can I do this using Dax column or Measures
Solved! Go to Solution.
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
Proud to be a Super User!
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
Proud to be a Super User!
Hi @Kevin454 ,
I added an index column in power query, you need an index or a date column in order to sort the table correctly.
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
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |