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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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