Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi everyone,
I have a table with transactions, users, and transactions type...The idea is count the unique users by transactions type.....Someone can help me please?
| Table 1 | Table 2 | ? | |||
| Transaction ID | User ID | Transaction Type | Transaction Type | Count Unique User ID | |
| 1 | U1 | A | Only A | 1 | |
| 2 | U2 | B | Only B | 1 | |
| 3 | U3 | A | A and B | 2 | |
| 4 | U1 | B | Total | 4 | |
| 5 | U2 | A | |||
| 6 | U4 | B |
Many thanks
Rui
Solved! Go to Solution.
Hi @Anonymous ,
Just create a calculated column to group the users and count them using distinct.
Did I answer your question? Mark my post as a solution!
Ricardo
works perfectly, thanks
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 4 |