Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
bolabuga
Helper V
Helper V

Measure Doubt.

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)

1 ACCEPTED SOLUTION
v-haibl-msft
Microsoft Employee
Microsoft Employee

@bolabuga

 

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.

 

Measure Doubt._1.jpg

 

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.

Measure Doubt._2.png

 

Best Regards,

Herbert

View solution in original post

3 REPLIES 3
v-haibl-msft
Microsoft Employee
Microsoft Employee

@bolabuga

 

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.

 

Measure Doubt._1.jpg

 

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.

Measure Doubt._2.png

 

Best Regards,

Herbert

Thks herbert, that was just what i needed :).

Greg_Deckler
Super User
Super User

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.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.