Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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?
Solved! Go to Solution.
take look at this solution :
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 23 | |
| 14 | |
| 10 | |
| 6 | |
| 5 |