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! Learn more
I've stumbled upon other similar posts but haven't found the answer I am looking for.
I have a project table that contains duplicated IDs because there are more than one owners of the project.
| ID | Status | Owner |
| 1 | In progress | Bob |
| 1 | In progress | Claire |
| 2 | Complete | Bob |
| 4 | Not started | Harry |
| 4 | Not started | Tom |
| 5 | Complete | Bob |
| 6 | Complete | Bob |
I want to count the number of distinct IDs filtered by the Status to show on a card visualization.
I've tried distinctcount but i'm not sure if i am using the filter dax properly.
@Anonymous
If this is what you are looking for:
Use this.
DistinctCount = DISTINCTCOUNT('Table'[Owner])
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |