Forum Discussion
Anonymous
9 years agoNot applicable
Customer Churn Rate
Hi, I'm trying to calculate our customer churn rate, and I've already implemented the measures from DAX patterns: http://www.daxpatterns.com/new-and-returning-customers/ As a next step I'm tryi...
- Anonymous9 years ago
v-huizhn-msft;
I solved my issue in the meantime by disregarding the suggested Churn-rate measure and followed another approach, which was more simple but still correct.Used the following measure, which is in Danish:
Churn rate (Måned) = VAR AktiveSidsteMaaned = CALCULATE('Kunde Churn'[Total aktive kunder]; Dateadd(Periode[Dato];-1;MONTH)) RETURN VAR DageIMaaned = CALCULATE(COUNTROWS(Periode);VALUES(Periode[Måned])) RETURN VAR NyeKunderIMaaned = [Total aktive kunder] - AktiveSidsteMaaned RETURN VAR KundeDageImaaned = ((AktiveSidsteMaaned * DageIMaaned) + (0,5*NyeKunderIMaaned*DageIMaaned)) RETURN CALCULATE( DageIMaaned * DIVIDE('Kunde Churn'[Churned Kunder];KundeDageImaaned) )
Aryna
8 months agoPost Partisan
Hi there, another option is to explore available third-party connectors. There’s a ready-made solution that provides a free Shopify Power BI template with the essential Shopify tables and predefined relationships, allowing you to connect your data and start quickly: https://vidi-corp.com/shopify-analytics-dashboards/
It’s a helpful shortcut if you’re not experienced with Shopify data modeling or simply want to accelerate the setup process.