Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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.
User | Count |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |