Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

How to use average DAX function for measure

I have created new measure in the table .  i have copied measure in the below    Total_Machine_park = CALCULATE(DISTINCTCOUNT('Manning calculation'[ID]),'Manning calculation'[Capacity Type]="INSTAL...
  • Jihwan_Kim's avatar
    4 years ago

    Hi,

    Please try below.

     

    Average measure: =
    AVERAGEX (
        VALUES ( TableName[ColumnName_you want to measure avg] ),
        [Total_Machine_park]
    )