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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
patri0t82
Post Patron
Post Patron

SUM of Count of Distinct Values

Hello,

I have a column [Name] full of names (text).

I'm my visualization I am applying the 'Count Distinct' summarization. I would like to create a measure that will simply SUM the total of distinct names, but I can't figure it out at all.

 

Any help would be greatly appreciated.

1 ACCEPTED SOLUTION
themistoklis
Community Champion
Community Champion

@patri0t82 

 

Try the following formula:

User Distinct =
VAR t =
    SUMMARIZE (
        'Table',
        Table[Date],
        "UserDistinct", DISTINCTCOUNT ( Table[Name] )
    )
RETURN
    SUMX ( t, [UserDistinct] )

View solution in original post

7 REPLIES 7
Syndicate_Admin
Administrator
Administrator

Hi, I'd like help in a similar DAX formula.

To one extent I'm calculating: the distinctive count where the sale is greater than 0 of a string field.

I would like to get the total or sum of that count, since the result is not adding the values of each row to me.

I look forward to your help, thank you very much

themistoklis
Community Champion
Community Champion

@patri0t82 

 

Try the following formula:

User Distinct =
VAR t =
    SUMMARIZE (
        'Table',
        Table[Date],
        "UserDistinct", DISTINCTCOUNT ( Table[Name] )
    )
RETURN
    SUMX ( t, [UserDistinct] )

Thank you

That's great! your formula has worked for me. I had the same problem.

That seems to have done it! Thank you so much.

ibarrau
Super User
Super User

Hi. What do you mean with SUM the total of distinct names? 

You you just want the number of the "Count Distinct" summarization you can write a dax measure like

Measure = DISTINCTCOUNT ( Table[Column] )

Hope that helps,


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

Thanks for your response. I'll try to clarify.

 

If I look at a date, say 1/21/2021, using Count Distinct I am returned 90 unique names. If I go a day earlier, I see 85 unique names.

If I select two days, I still only see 90 unique names, where I would like to see the SUM of both of those days'-worth unique names.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.