cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Kevin454
New Member

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.         5

Acura.         1.         1

Acura         1.          2 

 

How can I do this using Dax column or Measures

 

 

 

1 ACCEPTED SOLUTION
Nathaniel_C
Super User
Super User

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

Nathaniel_C_0-1690061975789.png

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





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Nathaniel_C
Super User
Super User

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

Nathaniel_C_0-1690061975789.png

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





Did I answer your question? Mark my post as a solution!

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





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors