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
prvn
Frequent Visitor

Previous month and Current month values are same

I'm building a report, the matrix should show current and previous month figures. When i tried both current and previous columns show same values.

 

power1.PNG

 

I have tried multiple ways for the calculated previous month column using DAX as shown below by refering to multiple posts

 

Previous Active = VAR prevMonth =MONTH(TODAY()) - 1 RETURN CALCULATE(
	SUM(ViewClashDetection[Active]),
	FILTER(ALL(DimDate[Month]), VALUE(DimDate[Month]) = prevMonth)
)

Previous Active= VAR prevMonth = DATESINPERIOD(DimDate[Date],TODAY(),-2,MONTH) RETURN CALCULATE(
	SUM(ViewClashDetection[Active]),
	DATESBETWEEN(DimDate[Date],[Measure 5],[Measure 4])
)

Previous Active = CALCULATE(
	SUM(ViewClashDetection[Active]),
	DATEADD(DimDate[Date], -1, MONTH)
)

 

 

 

 

1 ACCEPTED SOLUTION
v-danhe-msft
Employee
Employee

Hi @prvn ,

Based on my test, you could refer to below formula:

Measure = CALCULATE(SUM(Table1[Active]),PREVIOUSMONTH('Calender'[Date]))

Result(note to use calender date as date):

1.PNG

You could also download the pbix file to have a view.

 

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

5 REPLIES 5
v-danhe-msft
Employee
Employee

Hi @prvn ,

Based on my test, you could refer to below formula:

Measure = CALCULATE(SUM(Table1[Active]),PREVIOUSMONTH('Calender'[Date]))

Result(note to use calender date as date):

1.PNG

You could also download the pbix file to have a view.

 

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.

@v-danhe-msft such a simple formula and works like a charm 🙂 thank you!

Thanks for the respose. Will this solution work if there is data missing for weeks in between?

I was unable to open the pbix as i need to update power bi app. I'm currently using 2.67.

Hi @prvn ,

Could you please tell me if your problem has been solved? If it is, could you please mark the helpful replies as Answered to close this topic?

 

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.

Hi @prvn ,

Yes, it could work for your data. You could also refer to below link about how to use previousmonth function:https://docs.microsoft.com/en-us/dax/previousmonth-function-dax

If it could not help you, you could upload your pbix file to have a test.

 

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
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.