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

PREVIOUSMONTH() function does not working for me

Hi,

I have written PREVIOUSMONTH() in below measure:

Previous Month Sales =
VAR vSales = CALCULATE(
sum(Orders[Sales]), PREVIOUSMONTH('Calendar'[Date])
)
RETURN
IF(vSales = blank(), 0, vSales)
 
But, it is not working properly like below:
gsandip_0-1679049445369.png

which you can see is incorrent, but when I add Year from my calendar, then year wise and monthwise it is showing correct result like below:

gsandip_1-1679049623509.png

So, why it is hapenning here? actually I don't want to use Year column in my table and want the correct result, but it is showing wrong when I remove Year column from table.


 

 

1 ACCEPTED SOLUTION

Hi,

I got the solution here By @amitchandak 

(1) Power BI Offset Compare Categories, Time Intelligence MOM, QOQ, YOY - YouTube

I have used below DAX and it works fine for me.

Previous Month Sales = CALCULATE (     SUM ( Orders [Sales] ), OFFSET (- 1 , ALLSELECTED ( 'Orders' [Month Name] , Orders [Month Num] ), ORDERBY ( 'Orders' [Month Num] , ASC ), KEEP ) )  

 

Great Help

Thank you,

Sandip Ghosh

View solution in original post

3 REPLIES 3
Ahmedx
Super User
Super User

in that case you need new features OFFSET

Hi,

I don't understand it, can you please give me the syntax or modified DAX what I was using?

Hi,

I got the solution here By @amitchandak 

(1) Power BI Offset Compare Categories, Time Intelligence MOM, QOQ, YOY - YouTube

I have used below DAX and it works fine for me.

Previous Month Sales = CALCULATE (     SUM ( Orders [Sales] ), OFFSET (- 1 , ALLSELECTED ( 'Orders' [Month Name] , Orders [Month Num] ), ORDERBY ( 'Orders' [Month Num] , ASC ), KEEP ) )  

 

Great Help

Thank you,

Sandip Ghosh

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.