Forum Discussion

benvett14's avatar
benvett14
Frequent Visitor
6 years ago
Solved

Formula Help (Average If)

I am trying to calculate the average for the column below but only want to include the positive values. I have also attached the formula I thought would work but it keeps giving me an error. I also t...
  • Pragati11's avatar
    6 years ago

    Hi benvett14 ,

     

    You need to write your DAX as follows:

    payCycle2 = CALCULATE(AVERAGE(barth[pay cycle]), FILTER(ALLSELECTED(barth), barth[pay cycle] > 0))

     

    Thanks,

    Pragati