Forum Discussion

mrdwanm's avatar
mrdwanm
Frequent Visitor
5 years ago
Solved

How To Summarize Churn

Hello,  i have calculate of churn for each customer. and then i want to show the churn by customer type, but the total is 0.   How to show it?  my dax query for churn  Churn = IF(AND([GM...
  • v-xulin-mstf's avatar
    5 years ago

    Hi mrdwanm,

     

    Try measure as:

    SUMX(
       filter(
             table,
             table[Year Month Type]=maxtable[Year Month Type]),
      [Churn]
    )

    If you still have some question, please don't hesitate to let me known.‌‌

     

    Best Regards,

    Link

     

    Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!