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
sparker22
Frequent Visitor

Distinct count across all categories, not just within each

Hi,

I am looking to create demographic breakdown of individuals, however Distinct Count isn't working as I need for returning users whose category changes.

I want all categories to equal the total number of unique users, rather than the total of unique users in each age

User#Age
118
219
323
427
219
517
623
119

 

Because user#1's age changes, this will get counted once in both the 18 and 19 age category, rather than only once as I need because the user# is the same.

 

Any thoughts?

1 ACCEPTED SOLUTION

@sparker22 , If I am took your question correctly then you can try:-

Measure 3 = 
CALCULATE (
    DISTINCTCOUNT ( 'Table (3)'[User#] ),
    All ('Table (3)'[Age] )
)

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

4 REPLIES 4
Samarth_18
Community Champion
Community Champion

Hi @sparker22 ,

 

Create a concatenated column as below and take a distinct count of it:-

Column = [User#]&"-"&[Age]

Samarth_18_1-1649416710030.png

 

Measure = distinctcount(table[column])

 

Thanks,

Samarth

 

  

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Thanks for your response Samarth.

 

I believe this has the same issue.

As it stands there are 6 distinct users

If we get the distinct count of each age, user 1 will be counted twice, in both the 18 and 19 ages. I would like them to be only counted once

@sparker22 , If I am took your question correctly then you can try:-

Measure 3 = 
CALCULATE (
    DISTINCTCOUNT ( 'Table (3)'[User#] ),
    All ('Table (3)'[Age] )
)

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Jihwan_Kim
Super User
Super User

Hi,

I am not sure which visualization you want to use to display your information, but please try the below.

 

expected outcome measure: =
CALCULATE (
    DISTINCTCOUNT ( TableName[User#] ),
    REMOVEFILTERS ( TableName[Age] )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.