- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Table based on 2 measures is not showing all values
I have created a table with 2 calculated, running totals.
The y-axis is the time axis, showing the successive (sprint) numbers.
Measure 1 ('Actual spent') does NOT contain (calculated) values for every sprint.
Cumulatief gerealiseerd + gepland =
CALCULATE(
SUM('Work items'[Totaal]),
FILTER(
ALLSELECTED('Work items'),
'Work items'[Iteration Path] <= MAX('Work items'[Iteration Path])
)
)
Measure 2 ('Budget') DOES contain (calculated) values for every sprint.
Cumulatief budget =
CALCULATE(
SUM('Budget'[Budget]),
FILTER(
ALLSELECTED('Work items'),
'Work items'[Iteration Path] <= MAX('Work items'[Iteration Path])
)
)
The problem is that 'Budget' does not calculate correctly: where 'Actual spent' does not contain any value, 'Budget' is not summed at all.
In the image below the budget should be a straight line: 41 hours every sprint.
This is the data model:
How can I fix this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi Greg!
I fixed it myself by modifying the formula for the running Budget:
Cumulatief budget =
CALCULATE(
SUM('Budget'[Budget]),
FILTER(
ALLSELECTED('Budget'),
'Budget'[Iteration Path] <= MAX('Budget'[Iteration Path])
)
)
I had used the Work Items Iteration Path (Sprint number) instead of the Budget Iteration Path.
Now it all looks well!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@RemkoS - It is difficult to say without sample source data to test with, however, if you want a constant budget value, then you need to not make the budget calculation cumulative, which is what you are doing with your budget calculation. Try simply:
Cumulatief budget =
SUM('Budget'[Budget])
The part with the FILTER, etc, you are summing up the budget for all prior weeks as well as including the current week.
Follow on LinkedIn
@ 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!: Power BI Cookbook Third Edition (Color)
DAX is easy, CALCULATE makes DAX hard...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi Greg!
Thanks for the reply! I deliberately used this formula since I want to calculate the RUNNING total budget.
For the visible Area Path ('Nieuwe Klanten') the budget is same per area, but for other Area Paths it differs per sprint.
Is there a way for me to upload the source data to this forum?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi Greg!
I fixed it myself by modifying the formula for the running Budget:
Cumulatief budget =
CALCULATE(
SUM('Budget'[Budget]),
FILTER(
ALLSELECTED('Budget'),
'Budget'[Iteration Path] <= MAX('Budget'[Iteration Path])
)
)
I had used the Work Items Iteration Path (Sprint number) instead of the Budget Iteration Path.
Now it all looks well!

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
08-02-2024 11:49 AM | |||
09-26-2023 01:55 AM | |||
08-16-2024 12:23 AM | |||
06-14-2023 05:18 AM | |||
07-10-2024 02:08 PM |
User | Count |
---|---|
141 | |
112 | |
83 | |
63 | |
47 |