cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
wasequesiddiqui
Regular Visitor

Improper Functioning of PreviousYear Function

TEMP.jpg

 

I am trying to get the sales of Previous Year but somehow previousyear function is not giving me the desired result. [LY Sales Col] is my previous year sales column.

1 ACCEPTED SOLUTION
v-haibl-msft
Microsoft
Microsoft

@wasequesiddiqui

 

You need to create a calendar table and create relationship between these two tables with Date key. Then use PREVIOUSYEAR Function (DAX) like below.

 

 

LY Sales =
CALCULATE ( SUM ( SALESSHEET[Sales] ), PREVIOUSYEAR ( 'Calendar'[Date] ) )

 

Best Regards,

Herbert

View solution in original post

3 REPLIES 3
v-haibl-msft
Microsoft
Microsoft

@wasequesiddiqui

 

You need to create a calendar table and create relationship between these two tables with Date key. Then use PREVIOUSYEAR Function (DAX) like below.

 

 

LY Sales =
CALCULATE ( SUM ( SALESSHEET[Sales] ), PREVIOUSYEAR ( 'Calendar'[Date] ) )

 

Best Regards,

Herbert

Thanks for the prompt response. Your solution worked like a charm!

wasequesiddiqui
Regular Visitor

 Temp2.png

I have tried changing the column for previousyear function still it is not working

 

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors