The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi all,
I hope you are well.
I am struggling with a measure now to get the right cumulative surplus/deficit each month.
I have correct measures for Incomes & Expenses respectively.
The calculation for surplus/deficit is Incomes - Expenses, thus I have a new measure created below:
@BryanLy , You need to have date and then try
MTD Cumm= CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last MTD Cumm= CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))
diff = [MTD Cumm]-[last MTD Cumm]
Date from month
date = "01-" & [Month] & "-" & [Year]
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-Y...
Appreciate your Kudos.
Looks like you need a running total. Please try an expression like this, replacing with your actual measure/table/column names. This assumes you have a Date table. If not, you'll need to remove the filter from your month and date column used in your visual with ALL(Table[Date], Table[Month]), but a Date table is recommended.
Surplus =
VAR maxdate =
MAX ( 'Date'[Date] )
RETURN
CALCULATE (
[Income] - [Expenses],
ALL ( 'Date'[Date] ),
'Date'[Date] <= maxdate
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi @BryanLy ,
Please see this post regarding How to Get Your Question Answered Quickly:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
User | Count |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |