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

Next 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

Reply
Anonymous
Not applicable

DAX question to compare behaviour last year

Hello Community. I have a table like this

 

test1.jpg

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

 

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

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.

H1.PNG

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]

H2.PNG

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.

H3.PNG

You can also download the PBIX file to have a view.

https://www.dropbox.com/s/narrqlq2vp2i6pb/DAX%20question%20to%20compare%20behaviour%20last%20year.pbix?dl=0

 

Regards,

Daniel He

Community Support Team _ Daniel He
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

1 REPLY 1
v-danhe-msft
Microsoft Employee
Microsoft Employee

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.

H1.PNG

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]

H2.PNG

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.

H3.PNG

You can also download the PBIX file to have a view.

https://www.dropbox.com/s/narrqlq2vp2i6pb/DAX%20question%20to%20compare%20behaviour%20last%20year.pbix?dl=0

 

Regards,

Daniel He

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

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.