Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
power_roboter
Frequent Visitor

Distinctcount relatedtable date_Key to month

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)
))

 

2 REPLIES 2
amitchandak
Super User
Super User

@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/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.