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 agonorbi
Helper I
8 years agoHi Zubair_Muhammad,
How would the average work for the three month average as numerous Cust_* need to be added together and then averaged per month?
% 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
HI norbi
See the Addition in Red font
% of 3 month_average = DIVIDE ( SUM ( TableName[Vol] ), CALCULATE ( AVERAGE ( TableName[Vol] ), ALL ( TableName ), DATESINPERIOD ( TableName[Date], SELECTEDVALUE ( TableName[Date] ), -3, MONTH ) ) ) - norbi8 years ago
Helper I
Thank you or the feedback. When I try the formula with multiple entries for the month it averages every value and over three months. I would like to sum the entire month of data for all customer and the average only on the monthly totals for 3 months? Your assistance will be highly appreciated.
- Zubair_Muhammad8 years ago
Community Champion
Hi Norbi,
Could you paste some data with multiple customers and multiple dates and result you expect?