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

Calculate Year over Year comparison dynamically based on the [year] slicer

Hello All,

 

I have a question regarding dynamically calculate the year over year comparison.

 

Suppose I have a table that look like this:

 

Sales:    
 2019202020212022
NY400K385K800K750K
NJ200K300K250K400K
CT150K400K280K300K

 

and there is a slice where I can select what is the current year.

 

if I would like to construct a table that dynamically displays my current year selection and automatically populates the sales for the previsouly year and the sales increase (decrease), for example:

 

[Year] selected 2021

 

 Current YearPrevious YearIncrease (Decrease)
NY800K385K415K
NJ250K300K(50K)
CT280K400K(120K)

 

How can I achieve this? 

 

Thank you all for your help!

1 ACCEPTED SOLUTION
tom480
Resolver I
Resolver I

Hi @ianhyj ,

 

There's a lot of ways to do this, here's one way:

 

1) To use time intelligence measures in DAX you need a date table.  I created a basic one and marked as the date table using this code:

 

TableDT =
VAR MinYear = YEAR ( MIN ( Table1[Date] ) )
VAR MaxYear = YEAR ( MAX ( Table1[Date] ) )
RETURN
ADDCOLUMNS (
FILTER (
CALENDARAUTO( ),
AND ( YEAR ( [Date] ) >= MinYear, YEAR ( [Date] ) <= MaxYear )
),
"Month Name", FORMAT ( [Date], "mmmm" ),
"Month Number", MONTH ( [Date] )
)
 
2)  Next I created three measures:
 
2a) 
Current Year = SUM(Table1[Value])
 
2b) 
Last Year = CALCULATE(
[Current Year],
SAMEPERIODLASTYEAR(Table1[Date])
)
 
2c)
 
Chg Year = [Current Year] - [Last Year]
 
That gives me these results:
 
Matrix visual with year slicerMatrix visual with year slicer
 
Simple Date Table for exampleSimple Date Table for example
 
Here's the PBIX file if you want to review in your desktop application.  
 
If you found this helpful, please mark as a solution so others can find it please!  Always glad to help!  Tom 😀

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
ianhyj
Regular Visitor

hi @tom480 ,

 

Thank you so much for the response. I am fairly new to PBI community and did not understand everything you did to make the magic happen, but I enjoy learning pbi and am looking forward to learning pbi from you in the future.

 

Thank again.

hi @ianhyj - if you need help with anything, always here to help you! I enjoy solving puzzles. Have a great weekend!  Tom 😀

tom480
Resolver I
Resolver I

Hi @ianhyj ,

 

There's a lot of ways to do this, here's one way:

 

1) To use time intelligence measures in DAX you need a date table.  I created a basic one and marked as the date table using this code:

 

TableDT =
VAR MinYear = YEAR ( MIN ( Table1[Date] ) )
VAR MaxYear = YEAR ( MAX ( Table1[Date] ) )
RETURN
ADDCOLUMNS (
FILTER (
CALENDARAUTO( ),
AND ( YEAR ( [Date] ) >= MinYear, YEAR ( [Date] ) <= MaxYear )
),
"Month Name", FORMAT ( [Date], "mmmm" ),
"Month Number", MONTH ( [Date] )
)
 
2)  Next I created three measures:
 
2a) 
Current Year = SUM(Table1[Value])
 
2b) 
Last Year = CALCULATE(
[Current Year],
SAMEPERIODLASTYEAR(Table1[Date])
)
 
2c)
 
Chg Year = [Current Year] - [Last Year]
 
That gives me these results:
 
Matrix visual with year slicerMatrix visual with year slicer
 
Simple Date Table for exampleSimple Date Table for example
 
Here's the PBIX file if you want to review in your desktop application.  
 
If you found this helpful, please mark as a solution so others can find it please!  Always glad to help!  Tom 😀

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.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors