Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
i'm trying to make a mesure that count the new users and one that count returen users
returen user is is a user that will appear in the records more then one time with a diffrent date
new will be a user with only one apprince in the records
i try this:
example of the data:
date | userid | activityid |
1/6/2021 | 1 | 11 |
1/6/2021 | 1 | 22 |
1/6/2021 | 2 | 55 |
2/6/2021 | 1 | 66 |
it's not working.
it's not take the date in the calculation/ return user will be one that appear in the recorded more then once at a different date
@rco123456 , Try measure
M1 = countrows(FactActivity)
return user = countx(filter(values(FactActivity[UserId]), [M1] >1), [M1])
new user = countx(filter(values(FactActivity[UserId]), [M1] =1), [M1])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
12 | |
11 | |
8 | |
7 | |
7 |
User | Count |
---|---|
20 | |
14 | |
11 | |
10 | |
10 |