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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

Finding the percentage difference against previous period taking into account years

Hi Experts

 

See sample PBIX, If you scroll down to Dec 2020 I am not able to compare the Percenatge Difference against Jan 21 - But i can compare the in Year Month Differences ie.

Jan 2021 v Feb 2021

 

how do i amend the current measure to allow me to compare month on month % difference whlist taking into account the year too.

Sample

https://www.dropbox.com/s/ymuu7z7gnhnzd3f/Mtnovermtn.pbix?dl=0 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try a measure like

 

total sales same week# previous month = 
var _max = Max(Dates[Date])
var _date = date(year(_max), month(_max)-1, Day(_max))
VAR currentyear = Year(_date)
VAR currentmonth = Month(_date)
VAR currentweeknumber = MAX(Dates[Week of Month])
RETURN
CALCULATE([total sales], FILTER( ALL(Dates), Dates[Year] = currentyear && Dates[MonthNo] = currentmonth  && Dates[Week of Month] = currentweeknumber))
Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try a measure like

 

total sales same week# previous month = 
var _max = Max(Dates[Date])
var _date = date(year(_max), month(_max)-1, Day(_max))
VAR currentyear = Year(_date)
VAR currentmonth = Month(_date)
VAR currentweeknumber = MAX(Dates[Week of Month])
RETURN
CALCULATE([total sales], FILTER( ALL(Dates), Dates[Year] = currentyear && Dates[MonthNo] = currentmonth  && Dates[Week of Month] = currentweeknumber))
Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

Hi Amit - getting error on this line 

var _date = date(year(_max), month(_max)-1, Day(_max))

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!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.