Forum Discussion
NewbieJono
3 years agoPost Partisan
Average over months
Hello all, i have used the average trend line to work out the average for this visuaul.
what wold the dax be to work out average myself? the counts in this charts are based on count rows in a table
Try adding that column after
'Table'[MonthColumn]
3 Replies
- ray_aramburoSuper User
Try this:
Average Ovr Months = AVERAGEX(SUMMARIZE('Table','Table'[MonthColumn]), CALCULATE(COUNTROWS('Table'))) - NewbieJonoPost Partisan
Thank you, is there a method i could add a thrid metric to this. for example department
- ray_aramburoSuper User
Try adding that column after
'Table'[MonthColumn]