Forum Discussion
PBIUWO
Helper III
6 years agoHelp creating an average calculation
Hi All, Currently, I am working on a project to show the daily inventory quantity at the item level and the movement of it compared to the average quantity. I receive a daily report of the inve...
- 6 years ago
You may try the measure below.
Measure = AVERAGEX ( VALUES ( 'Table'[Date] ), CALCULATE ( SUM ( 'Table'[Qty] ) ) )
v-chuncz-msft
Community Support
6 years ago
You may try the measure below.
Measure =
AVERAGEX ( VALUES ( 'Table'[Date] ), CALCULATE ( SUM ( 'Table'[Qty] ) ) )