- 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
Cumulative by week
Hello,
Anybody can resolve my problem ?
I want to get the budget of project by week with DAX. I have startDate and endDate. But i can't calculate realtive to week.. I tried by month with TOTALMTD but it's not good result.
Thanks a lot for your responses !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Levent ,
One sample for your reference, Please check the following steps as below.
1. Create a Calendar table and insert a calculated column in it.
Calendar = CALENDARAUTO()
Week = "Week" & WEEKNUM('Calendar'[Date])
2. Create a measuare to get the excepted result.
Measure = CALCULATE(SUM(Porjects[Budget]),FILTER(Porjects, Porjects[DateEnd]>=MIN('Calendar'[Date])))
Pbix as attached.
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Will Week1 always start on the first day of the year?
Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Levent ,
One sample for your reference, Please check the following steps as below.
1. Create a Calendar table and insert a calculated column in it.
Calendar = CALENDARAUTO()
Week = "Week" & WEEKNUM('Calendar'[Date])
2. Create a measuare to get the excepted result.
Measure = CALCULATE(SUM(Porjects[Budget]),FILTER(Porjects, Porjects[DateEnd]>=MIN('Calendar'[Date])))
Pbix as attached.
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks a lot, it's clear and perfect !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this:
Cumu_Total = Calculate(Sum(Table[Budget]), Filter(All("Table[Date]"), Table[Date] <= MAX (Table[Date])))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank for your response.
It's not just cumulating in time week by week.
But I need to cumulate only the budgets that have a start and end date in the first day of the week.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
01-09-2025 06:52 PM | |||
03-02-2025 10:36 PM | |||
06-27-2024 08:05 AM | |||
03-20-2025 08:41 AM | |||
11-29-2023 01:03 AM |
User | Count |
---|---|
136 | |
107 | |
86 | |
58 | |
46 |