Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
Solved! Go to 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.
Hope it helps you in some extend.
Best regards,
Paul Zheng
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,
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.
Hope it helps you in some extend.
Best regards,
Paul Zheng
Thank you for your help
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
78 | |
59 | |
36 | |
33 |
User | Count |
---|---|
98 | |
62 | |
56 | |
49 | |
41 |