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

count distinct by month

Hi, i have a table like this : 

 

Id       Date           Count

1069  1/12/2018   1

1069  1/20/2018   0

...

1069  2/02/2018   1

 

TOTAL                   2

 

I would like to count each ID by month (DISTINCTCOUNT(Id) => it's ok i have a relation to a date Table.

BUT

i would like to create a measure to sum all the Id by month to have 2 on TOTAL, and in my case, he counts 1

 

How to resolve ?

 

Thanks

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@coollehavre

 

Please try this MEASURE

 

Measure =
IF (
    HASONEFILTER ( Table1[Date].[Month] ),
    CALCULATE ( DISTINCTCOUNT ( Table1[Id] ) ),
    SUMX (
        ALLSELECTED ( Table1[Date].[Month] ),
        CALCULATE ( DISTINCTCOUNT ( Table1[Id] ) )
    )
)

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@coollehavre

 

Please try this MEASURE

 

Measure =
IF (
    HASONEFILTER ( Table1[Date].[Month] ),
    CALCULATE ( DISTINCTCOUNT ( Table1[Id] ) ),
    SUMX (
        ALLSELECTED ( Table1[Date].[Month] ),
        CALCULATE ( DISTINCTCOUNT ( Table1[Id] ) )
    )
)

Regards
Zubair

Please try my custom visuals

@coollehavre

 

Sample file attached as well

 

 


Regards
Zubair

Please try my custom visuals

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.