cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Serdet
Post Patron
Post Patron

Count of names based on condition

Hi,

 

I have a dataset similar to the below

 

NameJobdate
JohnUnit rate01/01/2022
AlanUnit rate01/01/2022
JohnDay work01/01/2022
MarcDay work01/01/2022

 

I want to calculate a count of employees who have worked jobs on unit rate and day work in the same day.

 

The caluclation based on the above dataset will give me a count of 1 because John has worked a unit rate job and a day work job on the same day.

 

Any ideas how I can calculate this with DAX?

 

Many thanks

1 ACCEPTED SOLUTION

Hi, @Serdet 

You can try measure as below:

Measure1 = 
VAR tab =
    SUMMARIZE (
        'Table',
        'Table'[Name],
        'Table'[date],
        "countjob", DISTINCTCOUNT ( 'Table'[Job] )
    )
RETURN
    COUNTROWS ( FILTER ( tab, [countjob] > 1 ) )

Screenshot 2022-01-19 142839.png

Best Regards,
Community Support Team _ Eason

 

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Serdet , Plot the measure with name


countx(filter(summarize(Table, Table[Name], "_1", countx(filter(Table, Table[Job] = "Unit rate"),[Job])
, "_2", countx(filter(Table, Table[Job] = " Day work"),[Job]) )
not(isblank(_1)) && not(isblank(_2)) && [_1] >0 && [_2]>0), [Name] )

 

 

Thanks for the speedy response.

 

I have copied the DAX (please note, some column names are different in my real dataset.

 

I am experiencing the below seen errors.

 

Serdet_0-1642084303138.png

Any ideas as to why it is not working?

Hi, @Serdet 

You can try measure as below:

Measure1 = 
VAR tab =
    SUMMARIZE (
        'Table',
        'Table'[Name],
        'Table'[date],
        "countjob", DISTINCTCOUNT ( 'Table'[Job] )
    )
RETURN
    COUNTROWS ( FILTER ( tab, [countjob] > 1 ) )

Screenshot 2022-01-19 142839.png

Best Regards,
Community Support Team _ Eason

 

Helpful resources

Announcements
Vote for T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Vote for your favorite t-shirt design now through March 28.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors