Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello Community. I have a table like this
Need help with the DAX so I can make a new column with the difference between one day and the day before. WIth that column I could measure the growth. I don't have a separate Date table. The date showed there is part of the same table as the data.
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous,
Based on my test, you can refer to below steps:
1.I have entered sample data in the below picture to test for your problem.
2.Create three calculated columns to calculate your previous day, the value of the previous day and the Variance.
Previous Date = [Data]-1
Lastdayvalue =
var previousdays = Sheet1[Previous Date]
var valueofpre = CALCULATE(SUM(Sheet1[Max of Total de Me gusta]),ALL(Sheet1),Sheet1[Data] = previousdays)
return
IF(ISBLANK(valueofpre),0,valueofpre)
Variance = [Max of Total de Me gusta]-[Lastdayvalue]
3.Create a Table visual and add the [Date], [Max of Total de Me gusta], [Previous Date], [Variance] and the [Lastdayvalue] fields. Now you can see the result.
You can also download the PBIX file to have a view.
Regards,
Daniel He
Hi @Anonymous,
Based on my test, you can refer to below steps:
1.I have entered sample data in the below picture to test for your problem.
2.Create three calculated columns to calculate your previous day, the value of the previous day and the Variance.
Previous Date = [Data]-1
Lastdayvalue =
var previousdays = Sheet1[Previous Date]
var valueofpre = CALCULATE(SUM(Sheet1[Max of Total de Me gusta]),ALL(Sheet1),Sheet1[Data] = previousdays)
return
IF(ISBLANK(valueofpre),0,valueofpre)
Variance = [Max of Total de Me gusta]-[Lastdayvalue]
3.Create a Table visual and add the [Date], [Max of Total de Me gusta], [Previous Date], [Variance] and the [Lastdayvalue] fields. Now you can see the result.
You can also download the PBIX file to have a view.
Regards,
Daniel He
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 |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |