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
daedah
Helper II
Helper II

sum of countdistrict by day

excuse me, please

I trying to calculate dax formula for districtcount by day

I use formula 

10W = ((CALCULATE(DISTINCTCOUNT(Driver[AUTO_PLATE_ID]),FILTER(Driver,Driver[AUTO_TYPE]="10 W"),Driver[BILL_DATE]))

Result

1574054262821.jpg
but it mistake  it correct is 255 but it show 15
 
Link for raw data 
 
 
Thank you for your help
 
 
 
 
1 ACCEPTED SOLUTION

Hi, @daedah 

I have spent some time on the fixing the outcomes. I am afraid it is not possible to sum up the DistinctCount measure by day. 
Therefore, I figured out an alternative (Calculated Column and Slicer) to your expected results despite the formula does not make much sense: 

 

10W Column=
CALCULATE (
    DISTINCTCOUNT ( Transport[AUTO_PLATE_ID] ),
    FILTER (
        ALLEXCEPT ( Transport, Transport[BILL_DATE] ),
        Transport[AUTO_TYPE] = "10W"
    )
)
    / CALCULATE (
        COUNTROWS ( Transport ),
        FILTER (
            ALLEXCEPT ( Transport, Transport[BILL_DATE] ),
            Transport[AUTO_TYPE] = "10W"
        )
    )

 

44 and 2388 are corresponding to 15 and 255 in your case.  

Capture.JPG

 

Hope it helps you in some extend. 

 

Best regards,

Paul Zheng

 

View solution in original post

6 REPLIES 6
V-pazhen-msft
Community Support
Community Support

Hi, @daedah 

 

I would like to help you but could you upload your raw data to OneDrive For business if possbile?

 

Paul

Hi, @daedah 

 

The excel data is different to yours, so my results is also differed. For the number "15", it is the distinctcount of Auto_PLATE_ID. 

 

I am not sure about what is the number 255. Could you clarify? Thank you.

 

Best,
Paul

yes please,

1574054262821.jpg

As picture , 255 from  4+8+7+8+11+7+6+7+6+7+8+9+5+5+....  or sum of result in everyday (According time selected , month , year)

 

Thank you for ypur help

Hi, @daedah 

I have spent some time on the fixing the outcomes. I am afraid it is not possible to sum up the DistinctCount measure by day. 
Therefore, I figured out an alternative (Calculated Column and Slicer) to your expected results despite the formula does not make much sense: 

 

10W Column=
CALCULATE (
    DISTINCTCOUNT ( Transport[AUTO_PLATE_ID] ),
    FILTER (
        ALLEXCEPT ( Transport, Transport[BILL_DATE] ),
        Transport[AUTO_TYPE] = "10W"
    )
)
    / CALCULATE (
        COUNTROWS ( Transport ),
        FILTER (
            ALLEXCEPT ( Transport, Transport[BILL_DATE] ),
            Transport[AUTO_TYPE] = "10W"
        )
    )

 

44 and 2388 are corresponding to 15 and 255 in your case.  

Capture.JPG

 

Hope it helps you in some extend. 

 

Best regards,

Paul Zheng

 

Thank you for your help

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.