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] ) )
)
)
)
- 1- Zubair_Muhammad8 years ago
Community Champion
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- Zubair_Muhammad8 years ago
Community Champion
Final one
% of 3 month_average = DIVIDE ( SUM ( TableName[Vol] ), CALCULATE ( AVERAGE ( TableName[Vol] ), DATESINPERIOD ( TableName[Date], SELECTEDVALUE ( TableName[Date] ), -3, MONTH ) ) )- Zubair_Muhammad8 years ago
Community Champion