March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I want help in calculating retained users :
Output
month | Count of retain Users |
Jan | 4 |
Feb | 2 |
Mar | 3 |
Dataset
Date | Useritemid |
1/1/2018 | 1 |
1/2/2018 | 2 |
1/3/2018 | 3 |
1/4/2018 | 6 |
2/10/2018 | 1 |
2/11/2018 | 3 |
2/12/2018 | 10 |
2/13/2018 | 3 |
2/14/2018 | 1 |
2/15/2018 | 11 |
3/15/2018 | 1 |
3/16/2018 | 2 |
3/17/2018 | 3 |
3/18/2018 | 10 |
3/19/2018 | 14 |
Solved! Go to Solution.
See file attached as well
try this
Create a calendar table and then this MEASURE
Measure = VAR PreviousMonthUsers = CALCULATETABLE ( DISTINCT ( Table1[Useritemid ] ), PREVIOUSMONTH ( Table1[Date] ) ) VAR CurrentMonthUsers = DISTINCT ( Table1[Useritemid ] ) RETURN IF ( ISEMPTY ( PreviousMonthUsers ), COUNTROWS ( CurrentMonthUsers ), COUNTROWS ( INTERSECT ( PreviousMonthUsers, CurrentMonthUsers ) ) )
See file attached as well
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
82 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |