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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
shankyy7227
Frequent Visitor

distinct count of multiple columns

My data contains FName, LName, MName, Gender, Card ID, Health ID, Active Flag and there may be Null in any column for each row i am trying to calculate distinct count  (FName+Card ID+Health ID) and distinct count  (FName+Card ID+Health ID+Where Gender=M)

FNAMELNAMEMNAMEGenderCard IDHealth IDActiveFlag
ABCDXM123456712345Y
BCEFYM981056167891N
ABCDXM123456712345Y
IHPQZM456789034564N
IMPYCF 56789N
   F145647867890N
MEEEBM 78901N
ABCDXM123456712345Y
BCEFYM981056167891N




Please help me with this.

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Create two measures and try the following Dax

 

Measure1 = COUNTROWS(GROUPBY(User,User[FNAME],User[Card ID],User[Health ID],User[Gender]))
Measure2 = COUNTROWS(FILTER(GROUPBY(User,User[FNAME],User[Card ID],User[Health ID],User[Gender]),User[Gender]="M"))

2018-06-06_9-32-30.png

 

 

 

View solution in original post

8 REPLIES 8
Anonymous
Not applicable

Hi,

I am wondering which is the best solution in terms of performance?

Concatenate Calculated Column ?
OR
GroupBy Measure ? 

Thank you in advance,

Rob

I think for performance is better calculated column, for datamodel size is better groupBy.

 

Correct me someone, if I am wrong.

Yes, calculated column is better for performance.

The measure will not perform well in that version, it's better to use SUMMARIZE instead of GROUPBY and CALCULATETABLE instead of FILTER, this way you don't have to materialize Gender:

Measure2 = 
CALCULATETABEL (
    COUNTROWS (
        SUMMARIZE ( User, User[FNAME], User[Card ID], User[Health ID] )
    ),
    User[Gender]="M"
)

 

Maestro!

Just a quick precision:

Measure2 = 
CALCULATE (
    COUNTROWS (
        SUMMARIZE ( User, User[FNAME], User[Card ID], User[Health ID] )
    ),
    User[Gender]="M"
)

 Change the CALCULATETABLE to simple  CALCULATE.

 

Have a great day!

Anonymous
Not applicable

Create two measures and try the following Dax

 

Measure1 = COUNTROWS(GROUPBY(User,User[FNAME],User[Card ID],User[Health ID],User[Gender]))
Measure2 = COUNTROWS(FILTER(GROUPBY(User,User[FNAME],User[Card ID],User[Health ID],User[Gender]),User[Gender]="M"))

2018-06-06_9-32-30.png

 

 

 

Anonymous
Not applicable

Worked for me too.

Thumbs up

Thanks Jessica the Measures are working.

Anonymous
Not applicable

Hi

 

1. Create a new column :   New_Col = 'Table1'[FNAME]&'Table1'[Card ID]&'Table1'[Health ID]

 

2. Then you can create measure to do the count as needed:

 

Dist_cnt = CALCULATE(DISTINCTCOUNT('Table1'[New_Col]))

 

Dist_Male_Cnt=CALCULATE(DISTINCTCOUNT('Table1'[New_Col]),'Table1'[Gender]="M")

 

Hope this helps.

 

Thanks
Raj

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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