Forum Discussion
dbrandone
Helper IV
5 years agoAverage time from multiple rows per month
I have the below data already calculated in the far right column. The far right column is the time difference between the left 2 columns. I need to average the total times per month for a trend. ...
- Anonymous5 years ago
Hi dbrandone ,
You can first create a month column.
YearMonth = YEAR([Date])&"-"&MONTH([Date])Then
Average per month = CALCULATE(AVERAGE('Table'[Hour]),ALLEXCEPT('Table','Table'[YearMonth]))Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
5 years agoNot applicable
Hi dbrandone ,
You can first create a month column.
YearMonth = YEAR([Date])&"-"&MONTH([Date])
Then
Average per month = CALCULATE(AVERAGE('Table'[Hour]),ALLEXCEPT('Table','Table'[YearMonth]))
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.