Forum Discussion
Need help to count unique values
Hi!
I need help to calculate the unique number of people working only on one type of BusinessUnits, but sometimes staff work on the same type of Unit but in different departments.
For example
Sarah works in Sales in two departments and Jenni also works in Sales but in one department. In total I have four staff but in the results when I filter on Sales BusinessUnit I only want to get 2 in the results, because only Sarah and Jenni work in Sales, and not in any other Unit.
Is it possible?
Table
| PersonID | FirstName | LastName | BusinessUnit | Department |
| 556677 | Matt | Olsen | Sales | Department 1 |
| 556677 | Matt | Olsen | Production | Department 1 |
| 775566 | Jenni | Grant | Sales | Department 1 |
| 445566 | Daniel | LaRusso | Consultant | Department 1 |
| 994455 | Sarah | Connor | Sales | Department 1 |
| 994455 | Sarah | Connor | Sales | Department 2 |
There you go π
8 Replies
- ray_aramburoSuper User
I would recommend you to create a new column to differentiate that by concatenating PersonID with Business Unit. Then create a measure to distinct count this new column (Measure = DISTINCTCOUNT([ColumnName]). Then create a visual and add only the Person ID and then the Measure. You can know use the filter pane to filter the visual for Measure is 1.
- MickeLearnPBIHelper I
Could you elaborate further or show me how to do it?
- ray_aramburoSuper User
Find attached what I meant. Feel free to explore the file and the Power Query.
- AhmedxSuper User
why canβt we count Matt, he works in the sales department?
556677 Matt Olsen Sales Department 1 - MickeLearnPBIHelper I
Matt also works on another Unit, i only want to show the result of people working on one type of unit.
- AhmedxSuper User
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.