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
Anonymous
Not applicable

Double distinct count

Hello, everyone 🙂
My table follows this structure:

COD  CV  
11111.1
11115.2
11116.2
22211.2
22216.2
33311.1
33315.2
33315.2

 

I would like to create a measure that distinct counts all types of CVs that are neither 11.1 nor 11.2, for each distinct COD. 
So, in the example table above, the count should be:

COD 111 = 2 (CV 15.2 and CV 16.2)
COD 222 = 1 (CV 16.2)
COD 333 = 1 (CV 15.2)

So, the measure should bring me the value 4 (2 +1 + 1).

Can someone help me?

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@req7 Try this measure. I uploaded a PBIX file below.

Measure = 
    COUNTROWS(
        SUMMARIZE(
            FILTER(
                'Table (2)',
                [CV  ] <> 11.1 && [CV  ]<>11.2
            ),
            [COD  ],[CV  ]
        )
    )

Greg_Deckler_0-1599614257208.png


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

This measure works

=SUMX(SUMMARIZE(VALUES(Data[COD]),Data[COD],"ABCD",CALCULATE(DISTINCTCOUNT(Data[CV]),Data[CV]<>11.1,Data[CV]<>11.2)),[ABCD])

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Greg_Deckler
Super User
Super User

@req7 Try this measure. I uploaded a PBIX file below.

Measure = 
    COUNTROWS(
        SUMMARIZE(
            FILTER(
                'Table (2)',
                [CV  ] <> 11.1 && [CV  ]<>11.2
            ),
            [COD  ],[CV  ]
        )
    )

Greg_Deckler_0-1599614257208.png


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

@Anonymous , Try like

sumx(Values(Table[COD ]),calculate( distinctCOUNT(Table[CV]) filter(Table, not(Table[CV] in {11.1 , 11.2}))))

sumx(Values(Table[COD ]),calculate( distinctCOUNT(Table[CV]) filter(Table, not(Table[CV] in {"11.1" , "11.2"}))))

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.