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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all,
I'm trying to get a running total as in the table below, would need the formula for the column Running Total.
I need to use Direct Query, already have Unrestricted Measures activated.
- My running total needs to be filtered per "Company" (e.g. 640, 641, 642, always numerical),
- My time horizon is labelled as "Period" (so not in a date format, but a numerical 1 ,2 ,3, 4 ....)
- I can have multiple rows with values for 1 period (e.g. 3 separate rows for company 640 in period 2)
=> the "Running Total" column should report the summed running total at the end of a period (as e.g. in period 2 for 640)
Struggling to get this to work, all help is welcome!
Thanks already!
| Company | Period | Investment Amount | Running Total |
| 640 | 1 | 100 | 100 |
| 640 | 2 | 50 | 250 |
| 640 | 2 | 50 | 250 |
| 640 | 2 | 50 | 250 |
| 640 | 3 | 150 | 400 |
| 641 | 1 | 1 | 1 |
| 641 | 2 | 5 | 6 |
| 641 | 3 | 10 | 16 |
| 642 | 1 | 3000 | 3000 |
| 642 | 2 | 2000 | 5000 |
| 642 | 3 | 5000 | 10000 |
Solved! Go to Solution.
@tomvs wrote:
Hi all,
I'm trying to get a running total as in the table below, would need the formula for the column Running Total.I need to use Direct Query, already have Unrestricted Measures activated.
- My running total needs to be filtered per "Company" (e.g. 640, 641, 642, always numerical),
- My time horizon is labelled as "Period" (so not in a date format, but a numerical 1 ,2 ,3, 4 ....)
- I can have multiple rows with values for 1 period (e.g. 3 separate rows for company 640 in period 2)
=> the "Running Total" column should report the summed running total at the end of a period (as e.g. in period 2 for 640)
Struggling to get this to work, all help is welcome!
Thanks already!
Company Period Investment Amount Running Total 640 1 100 100 640 2 50 250 640 2 50 250 640 2 50 250 640 3 150 400 641 1 1 1 641 2 5 6 641 3 10 16 642 1 3000 3000 642 2 2000 5000 642 3 5000 10000
Try a measure like
RUNNING TOTAL =
CALCULATE (
SUM ( YOURTABLE[Investment Amount] ),
FILTER (
ALLEXCEPT ( YOURTABLE, YOURTABLE[Company] ),
YOURTABLE[period] <= MAX ( YOURTABLE[period] )
)
)
@tomvs wrote:
Hi all,
I'm trying to get a running total as in the table below, would need the formula for the column Running Total.I need to use Direct Query, already have Unrestricted Measures activated.
- My running total needs to be filtered per "Company" (e.g. 640, 641, 642, always numerical),
- My time horizon is labelled as "Period" (so not in a date format, but a numerical 1 ,2 ,3, 4 ....)
- I can have multiple rows with values for 1 period (e.g. 3 separate rows for company 640 in period 2)
=> the "Running Total" column should report the summed running total at the end of a period (as e.g. in period 2 for 640)
Struggling to get this to work, all help is welcome!
Thanks already!
Company Period Investment Amount Running Total 640 1 100 100 640 2 50 250 640 2 50 250 640 2 50 250 640 3 150 400 641 1 1 1 641 2 5 6 641 3 10 16 642 1 3000 3000 642 2 2000 5000 642 3 5000 10000
Try a measure like
RUNNING TOTAL =
CALCULATE (
SUM ( YOURTABLE[Investment Amount] ),
FILTER (
ALLEXCEPT ( YOURTABLE, YOURTABLE[Company] ),
YOURTABLE[period] <= MAX ( YOURTABLE[period] )
)
)
@Eric_Zhang My good vibes of the day go to you my friend, works perfectly and makes perfect sense looking at it in hindsight. Can leverage this to solve some other issues as well, thanks a lot!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 106 | |
| 99 | |
| 38 | |
| 29 | |
| 28 |