In this section, calculations were performed based on the metrics specified above using the relevant databases, and the results obtined were interpreted and visualized. All the work was done in Tableau Public, and the and you can access the prepared dashboard here.
//MRR
sum([Total Revenue])
//Paid Users Count
SUM(
IF [Status] = 'new' OR [Status] = 'active' OR [Status] = 'back'
THEN
1
ELSE
0
END
)
//ARPPU
[MRR] / [Paid Users]
//New Paid Users
SUM(
IF [Status] = 'new'
THEN
1
ELSE
0
END
)
//New MRR
SUM(
IF [Status] = 'new'
THEN
[Total Revenue]
ELSE
0
END
)
//New Churned Users
SUM(
IF [Status] = 'churn'
THEN
1
ELSE
0
END
)
//New Churned Rated
[Churn Users] / LOOKUP(([Paid Users]), -1)
//Churned Revenue
SUM(
IF [Status] = 'churn'
THEN
[Total Revenue Previous]
ELSE
0
END
)
//Revenue Churned Rate
[Churn Revenue] / LOOKUP(([MRR]), -1)
//Expansion MRR
SUM(
IF [Status] = 'active' AND [Total Revenue] > [Total Revenue Previous]
THEN
[Total Revenue] - [Total Revenue Previous]
ELSE
0
END
)
//Contraction MRR
SUM(
IF [Status] = 'active' AND [Total Revenue] < [Total Revenue Previous]
THEN
[Total Revenue Previous] - [Total Revenue]
ELSE
0
END
)