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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Kudoed Authors