Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
PowerBIKD
Regular Visitor

Cohort Analysis: Average Churn Rate

Hello,
I'm new to Power BI and got struck while performing cohort analysis on customer data and trying to calculate the average across same row from multiple columns. I couldn't find any solutions related to it. So to start, I have created a dummy table with generate series to use it in cohort analysis and finding customer's that are retained. Upon doing that I have following as an example:

PowerBIKD_0-1647516582397.png

Customers that are joined in Jan 2021 have retention rate of 96.4% for a month after. I have calculated month over month churn rate. My goal is to get the average churn rate for customers joined in January 2021 based on their churn rates in months after. For example: Average churn rate for customers joined in Jan 2021 = 0.46 + 15.53 + 16.48 / 3 = 10.82 per month.

In this way I can use it to calculate the lifetime of a customer based on the average churn rate for customers that have their first sales on specific month. Hope this is clear.

 

Could someone please guide them how to proceed? Thanks a lot in advance.

 

Kind regards,

Karthik

 

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @PowerBIKD ,

 

Please try the following formula:

 

Measure = 
IF (
    ISFILTERED ( 'Table'[Month After] ),
    [CustMoMChurn%],
    AVERAGEX (
        FILTER (
            SUMMARIZE (
                'Table',
                'Table'[Date],
                'Table'[Month After],
                "Cust", [CustMoMChurn%]
            ),
            [Cust] > 0
        ),
        [Cust]
    )
)

Screenshot 2022-03-21 152912.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-kkf-msft
Community Support
Community Support

Hi @PowerBIKD ,

 

Please try the following formula:

 

Measure = 
IF (
    ISFILTERED ( 'Table'[Month After] ),
    [CustMoMChurn%],
    AVERAGEX (
        FILTER (
            SUMMARIZE (
                'Table',
                'Table'[Date],
                'Table'[Month After],
                "Cust", [CustMoMChurn%]
            ),
            [Cust] > 0
        ),
        [Cust]
    )
)

Screenshot 2022-03-21 152912.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@PowerBIKD , check if my blog can help

Period Of Stay – Cohort Analysis: https://community.powerbi.com/t5/Community-Blog/Customer-Retention-Part-3-Period-Of-Stay-Cohort-Anal...

 

If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Hi @amitchandak 

thank you for your reply and the blog link. I have done same analysis and got the customer retention.

My aim is now to calculate the average churn rate at which the customers are getting lost.

Below is the customer retention final result:

PowerBIKD_0-1647523864716.png

 

Customers that are joined in Jan 2021 have retention rate of 96.4% a month after. I have calculated month over month churn rate. I want the average churn rate for customers joined in January 2021 based on their churn rates in months after. For example: Average churn rate for customers joined in Jan 2021 should be = 0.46 + 15.53 + 16.48 / 3 = 10.82 per month. Not sure how I can calculate this using DAX?

 

Hope this is sufficient.

FYI: My data looks exactly like in your cohort analysis data if this helps.

 

Thanks a lot.

 

Kind regards,

Karthik

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.