Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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.
Please let me know how to do it.
Thanks
Solved! Go to Solution.
@NPK,
Please review my PBIX file.
https://1drv.ms/u/s!AhsotbnGu1NogywooC50WnB9h2pJ
Regards,
Lydia
@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() ))
Regards,
Lydia
Thanks v-yuezhe-msft for your quick response.
I exactly followed your steps, but i'm getting blank rows, am i missing something?
T
Thank you
@NPK,
Please review my PBIX file.
https://1drv.ms/u/s!AhsotbnGu1NogywooC50WnB9h2pJ
Regards,
Lydia
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
102 | |
68 | |
45 | |
37 | |
36 |