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
Good afternoon dear folks!
I am struggling with a business need here. I think it is a database config-issue.
Basically, I am trying to project the opex costs until the end of the Year. The logic is: If I schedule a big expense for the next month (Junhe), I´d like it to repeat itself monthly in the bar chart until the end of 2017, as the goal is to keep the budget under XXX $ by December 2017.
So it is an "accumulated" bar chart montly during the year. So I can see the impact in the budget in the December bar.
Does anyone figure something out to make this view easy?
best regards,
Germano Basler
Hi @germanobasler,
>>I think it is a database config-issue.
We can not config your database by Power BI desktop. The only you can do is filter the data when you import the data from databse through Power Quey or SQL statement if your database is SQL Server database.
In addition, you want to calculate the cumulative total. Please create a measure using the formula. More details about cumulative total, please refer to this article.
Cumulative Expense :=
CALCULATE (
SUM ( Table[Expense] ),
FILTER (
ALL ( 'Date'[Date] ),
'Date'[Date] <= MAX ( 'Date'[Date] )
)
)
If this is not what you want, please share your sample data, and list the expected result.
Thanks,
Angelia
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 |
|---|---|
| 50 | |
| 47 | |
| 29 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 89 | |
| 74 | |
| 40 | |
| 26 | |
| 25 |