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]="INSTALLED",FILTER('Manning calculation','Manning calculation'[Value]<>0),'Manning calculation'[Values]="Avl Qty").

 

I am trying to get average for the above measure .

 

I am trying to use below measure to get avg 

 

avg park=Averagex('Total_Machine_park')

 
i am getting Error. any idea.. thanks in advance .
  • Hi,

    Please try below.

     

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

2 Replies

  • Hi,

    Please try below.

     

    Average measure: =
    AVERAGEX (
        VALUES ( TableName[ColumnName_you want to measure avg] ),
        [Total_Machine_park]
    )
    
  • tamerj1's avatar
    tamerj1
    Community Champion

    Hi Anonymous 

    how does your report look like? What columns are involved in the visual and in the slicers/filters and from which tables?