Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I'm working on a set of two tables, active users of a tool on April and May. I want to calculate the number of users who were added on the tool and those who stopped using it (i.e. left the org) based on their unique id.
How do i build a measure/s that helps calculate the additions and reductions to the list?
For eg. a measure that would show 1 for added for freddie.m and a measure that should 1 reducded i.e. ked.kal.
I will be build a matrix report comparing such metrics for each month.
| April (Table) | May (Table) |
| Unique Id | Unique Id |
| s.ray | s.ray |
| bill.first | bill.first |
| ked.kal | freddie.m |
| j.lenny | j.lenny |
Thanks for your time!
Solved! Go to Solution.
Have a look at this thread, it covers a similar scenario
tldr; : use the EXCEPT() function both ways.
Have a look at this thread, it covers a similar scenario
tldr; : use the EXCEPT() function both ways.
@lbendlin Thank you so much.
I will take the time to understand that solution.
Is it possible to have an easier workaround?
For example
1. Have a measure that counts unique IDs common between April and May
2. To find unique ids lost = Total count of April - Count of unique IDs common for April and May
3. To find unique ids added = Total Count of May - Count of Unique IDs common for April and May
Would this potentially work?
That's basically what EXCEPT() does. All the other lines are just preparation.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 13 | |
| 12 | |
| 10 |