retention
3 TopicsCount Customers aggregately based on their latest status change on a monthly basis
Hi guys, i have this table of customers (Contact Id) with all their status changes along their way on a monthly basis: i wish to calculate by measures the number of customers for each status for each month, which means the latest status available should be considered and calculated until next status change. once a customer has its first change, he should be calculated until current month. There is a table to present what i mean (but in columns. not measures): thanks in advance, AmitSolved990Views0likes4CommentsCohort analysis - retention rate
Hi, I'm new to Power BI and I want to calculate and show retention rate on dashboard. I have tables regarding user cohort data and we calculate retention rate as below. ex. Retention Rate for Android JP user who installed App A through Facebook network, campaign_1, Image_1 during 2020-01-01~2020-01-02 - Retention Rate (D+1) = (50+140)/(100+200) Retention Rate for iOS JP user who installed App A through Google network, campaign_2, Video_1 during 2020-01-01~2020-01-02 - Retention Rate (D+1) = (30+40)/(50+100) * Retention Rate (D+n) = retained_users with period n / retained_users with period 0 App OS Country Network Campaign Ad Group Creative Date Period Retained_users A Android JP Facebook campaign_1 Image Image_1 2020-01-01 0 100 A Android JP Facebook campaign_1 Image Image_1 2020-01-01 1 50 A Android JP Facebook campaign_1 Image Image_1 2020-01-02 0 200 A Android JP Facebook campaign_1 Image Image_1 2020-01-02 1 140 A iOS JP Google campaign_2 Video Video_1 2020-01-01 0 50 A iOS JP Google campaign_2 Video Video_1 2020-01-01 1 30 A iOS JP Google campaign_2 Video Video_1 2020-01-02 0 100 A iOS JP Google campaign_2 Video Video_1 2020-01-02 1 40 I want to show retention rate by variables (App, OS, Country, Network, Campaign, Ad Group, Creative, Date). How can I solve this problem ?Solved6KViews0likes5CommentsCalculating Retained In Consecutive Months
Hi. I'm trying to calculate the count of players who have deposited in consecutive months (when slicing on any given month). I have a fact table which can have multiple deposits per day containing a [PlayerId] and [DepositDate]. Some metrics I already have setup here are the [Total Depositors] = DISTINCTCOUNT(Deposits[PlayerId]) [First Time Depositors] = CALCULATE(COUNTROWS(Deposits), Deposits[IsFirstDeposit]=1) [Retained] = [Depositors]-[FTDs] The requirement for [Consecutive Depositor] is the count of players that have deposited in consecutive months (not just any previous month). So I'm guessing it's somewhere along the lines of := SUMX( Distinct count of PlayerId where depositor in current month and previous month) It's evaluating whether the particular player has deposited in the previous month that is beyond my DAX capabilities. The highlighted column would be the desired output. Thanks Dave2.1KViews0likes2Comments