cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MicaelaTantum
Frequent Visitor

Running Calculation (Date part will run out)

Hello 😁

 

I would like some help with cracking a running total formula that I have been struggling with for a while. 

 

I basically need to show when each part number will run out... 

These are my columns; 

  • OH ( on hand) quanity which we have on site. 
  • Req QTY ( Required total amount ) which tells me how many of this part we need
  • Item which are the part numbers 
  • Sales Order which is a unique product number where the part will be build on 
  • Actual Lauch Date which tells me when the product will be used in the factory 

I have added these columns into a table to visualise.

 
 

powerbihelp.png

 

I would like another column on the end which will take the total amount of this part number (131,306.00) and take each row away from the total. Once it reaches 0, i will then create some sort of visual to highlight the actual launch date. 

I have tried a few rolling total formulas but it does not want to take the total amount and subtract it, instead it seems to formulate a row at a time.

 

Any suggestions/ help will be appreciated

 

 

Kind regards, 

 

Micaela 🤓

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @MicaelaTantum ,

 

"I would like another column on the end which will take the total amount of this part number (131,306.00) and take each row away from the total. Once it reaches 0, i will then create some sort of visual to highlight the actual launch date. "

Create measures like this:

Measure 3 = 
CALCULATE(
    SUM(Sheet4[REQD_QTY]),
    FILTER(
        ALLSELECTED(Sheet4),
        Sheet4[Sales Order] <= MAX(Sheet4[Sales Order])
    )
)
Measure 4 = 
CALCULATE(
    SUM(Sheet4[REQD_QTY]),
    ALL(Sheet4)
)
Measure 5 = [Measure 4] - [Measure 3]

Result picture 

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-lionel-msft
Community Support
Community Support

Hi @MicaelaTantum ,

 

"I would like another column on the end which will take the total amount of this part number (131,306.00) and take each row away from the total. Once it reaches 0, i will then create some sort of visual to highlight the actual launch date. "

Create measures like this:

Measure 3 = 
CALCULATE(
    SUM(Sheet4[REQD_QTY]),
    FILTER(
        ALLSELECTED(Sheet4),
        Sheet4[Sales Order] <= MAX(Sheet4[Sales Order])
    )
)
Measure 4 = 
CALCULATE(
    SUM(Sheet4[REQD_QTY]),
    ALL(Sheet4)
)
Measure 5 = [Measure 4] - [Measure 3]

Result picture 

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Super User
Super User

Take a peak at Days of Supply: https://community.powerbi.com/t5/Quick-Measures-Gallery/Days-of-Supply/m-p/635656#M318


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors
Top Kudoed Authors