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;
I have added these columns into a table to visualise.
Raw table
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 🤓
Solved! Go to Solution.
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]
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.
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]
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.
Take a peak at Days of Supply: https://community.powerbi.com/t5/Quick-Measures-Gallery/Days-of-Supply/m-p/635656#M318
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!