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
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 )
)
)
norbi
Helper I
8 years ago
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?