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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
MickeLearnPBI
Helper I
Helper I

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Top Kudoed Authors