Forum Discussion
norbi
Helper I
8 years agoMeasures for Customer Trends
Hi, I would appreciate assistance in solving the percentage Month on Month (MoM) growth, percentage Year on Year (YoY) growth and percentage of 3 month average. Below is the table where the input is...
Zubair_Muhammad
Community Champion
8 years agoHi norbi
Try this Measure for MoM
MoM =
DIVIDE (
SUM ( TableName[Vol] ),
CALCULATE (
SUM ( TableName[Vol] ),
FILTER (
ALLEXCEPT ( TableName, TableName[Name] ),
TableName[Date] = PREVIOUSMONTH ( VALUES ( TableName[Date] ) )
)
)
)
- 1Zubair_Muhammad
Community Champion
8 years ago
This Measure for YoY
YoY =
DIVIDE (
SUM ( TableName[Vol] ),
CALCULATE (
SUM ( TableName[Vol] ),
FILTER (
ALLEXCEPT ( TableName, TableName[Name] ),
YEAR ( TableName[Date] )
= YEAR ( SELECTEDVALUE ( TableName[Date] ) ) - 1
&& MONTH ( TableName[Date] ) = MONTH ( SELECTEDVALUE ( TableName[Date] ) )
)
)
)
- 1