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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Cumulative decrease quantity

Hi All,
I want to have the last column decreasing according to the previous one.
Ideally, cumul_col should reach zero in the time slot 23-00.

Any idea?


pbi.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

take look at this solution : 

scr.png

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

take look at this solution : 

scr.png

HotChilli
Super User
Super User

Here's a pattern for a cumulative decreasing amount.  I'm not sure if it is the best answer for your model because you haven't shown the Forecasts table and any relationship between the tables.

RunningTotal = VAR _Hour = TableL[Hour - Start]
               VAR _AddCol = CALCULATE(SUM(TableL[Colissimo]), FILTER(TableL, TableL[Hour - Start] < _Hour)) 
RETURN
    TableL[value] - _AddCol

I split the Hour column so that we have a numeric column to use as a kind of index.  It's just the first number in each Hour field.

Hope it helps.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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