Forum Discussion

madmanmark198's avatar
madmanmark198
Frequent Visitor
3 years ago
Solved

Avg Gift measure replace NaN

Really easy one I am sure but any help on this would be greatly appriciated.  I have a basic measure calculating average gift based off 2 other mesaures:   Avg Gift = [Received + Balance] / [Disti...
  • rajulshah's avatar
    3 years ago

    madmanmark198 

    You can use the following DAX measure:

    Avg Gift = DIVIDE([Received + Balance],[Distinctcount Donors],0)

    Please let me know if this didn't work.