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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I have a table that contains a 'CaseID', 'Status' and a 'Runningtime_Days'
Per 'CaseID' i can have multiple rows one for each 'Status'.
Wanted result 'TOTAL_Runningtime_Days'
For example
| CaseID | Status | Runningtime_Days |
| 1 | 1 | 1 |
| 1 | 2 | 15 |
| 2 | 1 | 2 |
| 3 | 1 | 1 |
| 3 | 2 | 18 |
| 3 | 3 | 5 |
Expected result:
| CaseID | Status | Runningtime_Days | TOTAL_Runningtime_Days |
| 1 | 1 | 1 | 16 |
| 1 | 2 | 15 | 16 |
| 2 | 1 | 2 | 2 |
| 3 | 1 | 1 | 24 |
| 3 | 2 | 18 | 24 |
| 3 | 3 | 5 | 24 |
Solved! Go to Solution.
Create a Calculated Column
TOTAL_Runningtime_Days =
CALCULATE(
SUM(YourTableName[Runningtime_Days]),
ALLEXCEPT(YourTableName, YourTableName[CaseID])
)
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
Create a Calculated Column
TOTAL_Runningtime_Days =
CALCULATE(
SUM(YourTableName[Runningtime_Days]),
ALLEXCEPT(YourTableName, YourTableName[CaseID])
)
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
Thank you so much, i have been struggling with this for over an hour and you answer it within a minute, brilliant!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 53 | |
| 42 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 124 | |
| 105 | |
| 44 | |
| 32 | |
| 24 |