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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi!
I have a column that can have the same value twice or more, but when the value in this column is the same and it is true in column True/False, how can I count the unique values for that person per task? Or rather the unique task per person?
112233 Is working on two tasks and is Admin on both, both the value is true becuase i only want to count this as one (Admin).
334455 Is only working on one task = true
445566 Is working on two tasks = false
The name of the task is fictitious and may vary.
Do you have any suggestions?
Example
| PersonID | Task | True/False (Unique value) |
| 112233 | Admin | True |
| 112233 | Admin | True |
| 334455 | Economy | True |
| 445566 | Economy | False |
| 445566 | Sales | False |
Solved! Go to Solution.
Please try
Count =
SUMX (
SUMMARIZE ( 'Table', 'Table'[PersonID], 'Table'[Task] ),
INT ( CALCULATE ( SELECTEDVALUE ( 'Table'[True/False], FALSE ) = TRUE ) )
)
Please try
Count =
SUMX (
SUMMARIZE ( 'Table', 'Table'[PersonID], 'Table'[Task] ),
INT ( CALCULATE ( SELECTEDVALUE ( 'Table'[True/False], FALSE ) = TRUE ) )
)
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 |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 19 | |
| 12 | |
| 10 |