Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All,
Struggling to create a measure or calculated column to get the Cumulative Total per Group per week. The report can only display one week at a time. I have a date table containing week number.
Dataset example is below (w/o the CumulativeValue)
Any help would be appreciated.
Solved! Go to Solution.
Hi @Jarrod
If your tables are connected via DateID, first add a new column to the Actuals Table:
Week Number =
RELATED('Date Table'[WeekNumber])
then use this code to add a new column for Cumulative Value:
Cumulative Value =
CALCULATE (
SUM ( 'Actuals Table'[Value] ),
FILTER (
ALLEXCEPT (
'Actuals Table',
'Actuals Table'[Metric],
'Actuals Table'[Week Number]
),
'Actuals Table'[DateID] <= EARLIER ( 'Actuals Table'[DateID] )
)
)
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @VahidDM,
Thank you for your response. This works perfectly! I have also added in the Year to the Filter section as it was adding up last year values.
Thanks for your help!
Hi @Jarrod
If your tables are connected via DateID, first add a new column to the Actuals Table:
Week Number =
RELATED('Date Table'[WeekNumber])
then use this code to add a new column for Cumulative Value:
Cumulative Value =
CALCULATE (
SUM ( 'Actuals Table'[Value] ),
FILTER (
ALLEXCEPT (
'Actuals Table',
'Actuals Table'[Metric],
'Actuals Table'[Week Number]
),
'Actuals Table'[DateID] <= EARLIER ( 'Actuals Table'[DateID] )
)
)
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |