Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
i'm trying to make a mesure that count the active users
active user is some one that have more then one activity id (activity id is a uniqe number)
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 |
Solved! Go to Solution.
Here's a measure to get number of active users.
how can i count returen and new user?
Here's a measure to get number of active users.
User | Count |
---|---|
11 | |
9 | |
6 | |
5 | |
4 |