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.
I have a budgetary report I have been working on and I have been working to get the Expenditure by Month by using the following equation:
Try using PREVIOUSMONTH instead of DATEADD and take a look at https://www.sqlbi.com/articles/filter-arguments-in-calculate/.
DATEADD(Table1[Exp Date],-1,MONTH) against Aug 31, 2018 literally brings back July 31, 2018, which you don't have in your dataset.
Create a calendar table ( DateTab = CALENDARAUTO() ) if you don't have one, and create a 1-to-many relationship between it and Exp Date.
Then use PREVIOUSMONTH()
Per Month total = CALCULATE([Expensed Measure], PREVIOUSMONTH(DateTab[Date]) )
If that doesn't work, please provide a sample of your raw data.
Hope this helps
David