Forum Discussion
squarecat
Helper I
1 year agoAnnual average from monthly average
Hello everyone, I have a report built on Excel, but management wants it to be migrated to Power BI. In Excel I was using a dynamic table to obtain the sum of all the values per year and per month, ...
- 1 year ago
You can create a measure like
Avg = AVERAGEX ( VALUES ( 'Date'[Year month] ), CALCULATE ( SUM ( 'Table'[Amount] ) ) )
squarecat
Helper I
1 year agoI also want to add that the number I obtained in the example by quarter refers to the Q1 (average of jan, feb and march)
Thanks in advance for any help!