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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
NPK
Frequent Visitor

Compare current month vs previous month with available month column only

Hi,

help needed with DAX.

i have the fllowing table with product, month and result columns available. But i need to create trend and previous month result columns based on month and result columns using dax. 

Data.png

Please let me know how to do it.

Thanks

 

1 ACCEPTED SOLUTION

@NPK,

Please review my PBIX file.

https://1drv.ms/u/s!AhsotbnGu1NogywooC50WnB9h2pJ

Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yuezhe-msft
Employee
Employee

@NPK,

Create the following columns in your table.

Index = COUNTROWS(FILTER(Table1,Table1[Product]=EARLIER(Table1[Product])&&Table1[Month]<=EARLIER(Table1[Month])))
Previous month result = CALCULATE(FIRSTNONBLANK(Table1[Result],1),FILTER(Table1,Table1[Product]=EARLIER(Table1[Product]) && Table1[Index]=EARLIER(Table1[Index])-1))
Trend = IF(ISBLANK(Table1[Previous month result]),BLANK(), SWITCH(
                          TRUE(),
                         
                  (Table1[Result]-Table1[Previous month result]) <= 0, UNICHAR(128315),
                   (Table1[Result]-Table1[Previous month result]) >= .010,UNICHAR(9650),
              BLANK()
             ))

1.JPG
Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thanks v-yuezhe-msft for your quick response.

I exactly followed your steps, but i'm getting blank rows, am i missing something?

Product.PNGT

Thank you

@NPK,

Please review my PBIX file.

https://1drv.ms/u/s!AhsotbnGu1NogywooC50WnB9h2pJ

Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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