Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Cumulative value with conditions (or other solution)

Hello fellows! I have little experiencie with DAX. I've been trying to create an expression to solve my problem.

I have a 3 tables.

Initial Stock (not linked with DateTable, because it is a snapshot of my current stock position)

Transit (linked with DateTable)

Demand (linked as well)

Final_Stock ( Initial Stock + Transit - Demand)

rcoutin_0-1646922867056.png

 

Here is where I'm stucked, what I've been trying to accomplish.

I have the initial stock and did the measure to give me the Final Stock for this month (Initial Stock + Transit - Demand) .

However, for the calculation for the next months, the initial stock to be considered should be the final stock from previous month.

The biggest problem I'm facing: If the final stock from previous month is negative, the next month should considere 0 as the initial stock and start over the process again.

 

What I did and is not working well.

 

Cumulative Total =
      CALCULATE(Medidas[Final_Stock],
               FILTER(ALL('Date'),
               'Date'[Date] <= MAX('Date'[Date])
          )
)
 
I tried to create a conditional formula, but is not working correctly.
 
rcoutin_1-1646924086920.png

 

Any help will be appretiated!!!

Thank you all.

2 REPLIES 2
Whitewater100
Solution Sage
Solution Sage

Hi:

Something like:

 = 

Measure = IF(CLOSINGBALANCEMONTH([Final_Stock], Dates[Date]) < 0, 0, CLOSINGBALANCEMONTH([Final_stock],Dates[Date]))
Anonymous
Not applicable

no... it is repating the value across the months

 

rcoutin_0-1646925566810.png

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors