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 experts,
I have a table with tracking data [userId, date_Key,..] and a related date table [date_Key, month, year etc.]. The tables are linked via the date_Key. Now I want to calculate the active months of a user.
I think calculate(DISTINCTCOUNT(RELATEDTABLE(Date)) does not work, because calculate only refers to one line of a user. The result for this is always 1.
Can you help me?
EVALUATE
DISTINCT (
SELECTCOLUMNS (
FILTER (
'∑ Tracking Data',
'∑ Tracking Data'[Application] = "product_a"
),
"userID", '∑ Tracking Data'[userId],
"numberOfActiveMonths", calculate(DISTINCTCOUNT(RELATEDTABLE(Datum)),
"numberOfUsageDays", calculate(DISTINCTCOUNT('∑ Tracking Data'[Datum_Key]),ALLEXCEPT('∑ Tracking Data','∑ Tracking Data'[userId]),'∑ Tracking Data'[Datum_Key] >= 20200101)
))
@power_roboter , not clear on what is an active user.
Is it very similar to
new vs repeat customer
https://community.powerbi.com/t5/Desktop/Churn-Rate-lost-Customer/m-p/1173754#M529196
https://blog.enterprisedna.co/new-vs-existing-customers-advanced-analytics-w-dax/
https://www.sqlbi.com/articles/computing-new-customers-in-dax/
An active user is a user, that has an entry in the tracking table. If the user has an entry for 20200101 he is an active user in january 2020.
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 |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
26 | |
21 | |
20 | |
14 | |
10 |