Average Formula to Exclude blank or zero values

Hi,

I am trying to average a list of Ages but want to exclude any cells that are blank or zero. Here is my current formula.      average(Client[Client Age])

I have tried multiple different ways to try and exclude blank and zero values but so far have been unsuccessful. Hoping someone might have some ideas. 

Thank you.

Solved Solved
0 9 964
1 ACCEPTED SOLUTION

Another way is to use SELECT() with your formula, like..
AVERAGE(SELECT(Client[Client Age],AND(ISNOTBLANK([Client Age]),[Client Age]>0)))

View solution in original post

9 REPLIES 9
Top Labels in this Space