Forum Discussion
Calculate an average from a Sum by Month
- 10 years ago
Hi Mertsch,
I have tested it on my local environment, you can add calculated column to display the month name using the DAX below
Month = MONTH(MonthAverage[Date])And then create a measure
MeasureAverage = SUM(MonthAverage[Total])/DISTINCTCOUNT(MonthAverage[Month])Regards,
Charlie Liao
Looks like you want to get the average by Summing the amount and dividing it by the number of months/distinct dates rather than dividing by the number of rows.
This might help, write following DAX measures:
Amount=SUM([Values])
NumOfDistinctDates=DISTINCTCOUNT([Date])
Avg=DIVIDE([Amount],[NumOfDistinctDates])
nikil
Check out the Chicagoland Power BI User Group
well it wokrs for the full tabel but if i used filters it dont work for it.
( 140 is correct for all data )
But after using Filters it will be still 140. it need to be 60 in that case
There must be a other way to have it more flexible with using filters
The data need to be calculated acording to the used filters and visual in front end.
May it works with GROUPBY Month Dates?! But i dont get the DAX work
= GROUPBY (Tabelle1;Tabelle1[Month];“TEST2”;SUM(CURRENTGROUP();Tabelle1[Total]))
- v-caliao-msft10 years ago
Microsoft Employee
Hi Mertsch,
I have tested it on my local environment, you can add calculated column to display the month name using the DAX below
Month = MONTH(MonthAverage[Date])And then create a measure
MeasureAverage = SUM(MonthAverage[Total])/DISTINCTCOUNT(MonthAverage[Month])Regards,
Charlie Liao
- Kinsey9 years ago
Advocate III
This does not work if the data covers a period longer than a year as multiples will appear over multiple years, is there another way?
- drmbrklyn9 years agoFrequent Visitor
substitute the followign for the month formula: =format([date], "YYYYMM")
- mertsch10 years agoFrequent Visitor
Thats what im looking for !
Thanks a lot !
- calerof10 years ago
Impactful Individual
Hi,
What if we want to use this measure with a date drill down, how would it work?
Fernando