Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
MickeLearnPBI
Frequent Visitor

DISTINCTCOUNT of a column when true is in another column?

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

PersonIDTaskTrue/False (Unique value)
112233AdminTrue
112233AdminTrue
334455EconomyTrue
445566EconomyFalse
445566SalesFalse
1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

@MickeLearnPBI 

Please try

Count =
SUMX (
SUMMARIZE ( 'Table', 'Table'[PersonID], 'Table'[Task] ),
INT ( CALCULATE ( SELECTEDVALUE ( 'Table'[True/False], FALSE ) = TRUE ) )
)

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

@MickeLearnPBI 

Please try

Count =
SUMX (
SUMMARIZE ( 'Table', 'Table'[PersonID], 'Table'[Task] ),
INT ( CALCULATE ( SELECTEDVALUE ( 'Table'[True/False], FALSE ) = TRUE ) )
)

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors