Forum Discussion

solvisig's avatar
solvisig
Icon for Advocate III rankAdvocate III
7 years ago
Solved

Average aggregates discard 0 values

Hi,  I´m having issue with the aggregated value of average. the average value is calculated with all the underlying rows taken into account. I want it to discard 0 values.   underlying tabl...
  • Omega's avatar
    Omega
    7 years ago

    solvisig 

     

    Try creating the below measure: 

     

    Average = AVERAGEX(FILTER(Table1,Table1[Value] <>0),Table1[Value])