Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all!
I have a a dataset such as:
| Type | Value | Month |
| Income | 123 | Jan |
| Expense | 321 | Feb |
| Other | 456 | Mar |
I'd like to sum all incomes per month as well as expenses.
Once i do that i'll be able to substract Income-Expense and display a burndown chart of the finances.
Any help would be appreciated on how to best achieve it.
Thanks in advance!
Solved! Go to Solution.
Hi @Markie
You can create three measures and put them as well as the Month column into a table visual to check the sum result.
Incomes Total = CALCULATE(SUM('Table'[Value]),'Table'[Type]="Income")
Expenses Total = CALCULATE(SUM('Table'[Value]),'Table'[Type]="Expense")
Remains = [Incomes Total] - [Expenses Total]
You can put these measures in other visuals later.
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
Hi @Markie
You can create three measures and put them as well as the Month column into a table visual to check the sum result.
Incomes Total = CALCULATE(SUM('Table'[Value]),'Table'[Type]="Income")
Expenses Total = CALCULATE(SUM('Table'[Value]),'Table'[Type]="Expense")
Remains = [Incomes Total] - [Expenses Total]
You can put these measures in other visuals later.
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |