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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
ryan0521
Frequent Visitor

DISTINCT COUNT SUM

Hello everyone,

 

I have a problem with the total of my DIstinctcount formula as shown below;

 

ClassOperating days
1304
2304
3290
4221
52
643
7123
843
total304

 

My formula in operating days is;

Operating days = CALCULATE(DISTINCTCOUNT('KSA BK'[Date].[Date]),FILTER('KSA BK',[2019 Sales]<>BLANK()))
 
However, I want to sum up all those operating days and put them as a total.
 
Thank you in advance
3 REPLIES 3
v-lid-msft
Community Support
Community Support

Hi @ryan0521 ,

 

How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?


Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-lid-msft
Community Support
Community Support

Hi @ryan0521 ,

 

We can create a measure use following formula to meet your requirement:

 

Operating days = 
SUMX (
    ADDCOLUMNS (
        DISTINCT ( 'KSA BK'[Class] ),
        "Days", CALCULATE (
            DISTINCTCOUNT ( 'KSA BK'[Date] ),
            FILTER (
                'KSA BK',
                [Class] = EARLIER ( 'KSA BK'[Class] )
                    && [2019 Sales] <> BLANK ()
            )
        )
    ),
    [Days]
)

 

3.PNG

 


BTW, pbix as attached.

 

Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@ryan0521 

Do you have a sample file?

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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