Forum Discussion

PBIUWO's avatar
PBIUWO
Helper III
6 years ago
Solved

Help 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...
  • v-chuncz-msft's avatar
    6 years ago

    PBIUWO 

     

    You may try the measure below.

    Measure =
    AVERAGEX ( VALUES ( 'Table'[Date] ), CALCULATE ( SUM ( 'Table'[Qty] ) ) )