Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello
i would like to create a measure that do the following:
MEASURE = (MONTH) - (LASTMONTH)
The idea is to use the variance to make a waterfall chart showing 2 years (24 months)
Solved! Go to Solution.
You can try with PREVIOUSMONTH function as smoupre said. Just give a simple sample as below. Assuming we have a sales table from 1/1/2014 to one day in 2017.
We can create a Calendar table firstly with following DAX formula. Create relationship with the sales table with date key. Put this Calendar[Date] column into the Slicer visual.
Calendar =
CALENDAR ( "1/1/2014", "12/31/2017" )Create a PreMonthSales and a Diff measure. Drag them into the Waterfall chart.
PreMonthSales = CALCULATE ( SUM ( Table1[Sales] ), PREVIOUSMONTH ( Table1[Date] ) )
MEASURE = CALCULATE ( SUM ( Table1[Sales] ) - [PreMonthSales] )
I've also uploaded the PBIX file here for reference.
Best Regards,
Herbert
You can try with PREVIOUSMONTH function as smoupre said. Just give a simple sample as below. Assuming we have a sales table from 1/1/2014 to one day in 2017.
We can create a Calendar table firstly with following DAX formula. Create relationship with the sales table with date key. Put this Calendar[Date] column into the Slicer visual.
Calendar =
CALENDAR ( "1/1/2014", "12/31/2017" )Create a PreMonthSales and a Diff measure. Drag them into the Waterfall chart.
PreMonthSales = CALCULATE ( SUM ( Table1[Sales] ), PREVIOUSMONTH ( Table1[Date] ) )
MEASURE = CALCULATE ( SUM ( Table1[Sales] ) - [PreMonthSales] )
I've also uploaded the PBIX file here for reference.
Best Regards,
Herbert
Thks herbert, that was just what i needed :).
Sounds like you need the PREVIOUSMONTH function:
https://msdn.microsoft.com/en-us/library/ee634758.aspx
Can't really say much more without sample data.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 35 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 71 | |
| 70 | |
| 38 | |
| 35 | |
| 23 |