Forum Discussion
nzboan
8 years agoNew Member
%Var between previous date
Hey, everyone, I've been trying to calculate this, but I'm really stuck. Here is the problem: I want to show in % the difference between months of 2016 and 2017. For example : January 2016: 1...
Ashish_Mathur
8 years agoSuper User
Hi,
If the following conditions are met
- You have a calendar table
- There is a relationship from the Date column of your data table to the date column of your calendar table
- You extract year and month in the calendar table
- You drag Year and Month from the calendar table into the visual
then, this measure will work
=SUM(Data[Value])/CALCULATE(Data[Value]),PREVIOUSMONTH(Calendar[Date]))
Hope this helps.