Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi Everyone,
I am currently working on a dashboard to show average staff productivity for a given interval of time. To estabilish my datapoint for staff availability for given day (ie count of workdays) I referred to call interaction log date.
however, the challenge is that a staff may log multiple interactions for a day so my code end up returning count of interactions rather than count of workdays .
I will appreciate a solution to this
Solved! Go to Solution.
Difficult to say withour data-point here but you might do something like
If(DISTINCTCOUNT(DATE)>1,1,0)
NOTE: As you said there are multiple transaction in a day hence distinct count in a day will be greater than 1 if you have DateTime , if the granularity is at Day level then you can expect one with DISTINCTCOUNT anyways
/Another option is to trim datetime to day and then take DISTINCTCOUNT
This way you consider multiple count as 1 only
Regards,
Ritesh
Hi Ribisht,
This actually worked, I trimed the date.
thanks a million
@Ucboy4 - Use Distinct count and see if that works.
Did I answer your question? Mark my post as a solution! If not, please feel free to ask me.
Also, I would ❤ Kudos if my solution helped. It is a token of appreciation!
Thank you very much !
Difficult to say withour data-point here but you might do something like
If(DISTINCTCOUNT(DATE)>1,1,0)
NOTE: As you said there are multiple transaction in a day hence distinct count in a day will be greater than 1 if you have DateTime , if the granularity is at Day level then you can expect one with DISTINCTCOUNT anyways
/Another option is to trim datetime to day and then take DISTINCTCOUNT
This way you consider multiple count as 1 only
Regards,
Ritesh
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
19 | |
15 | |
11 | |
10 | |
8 |
User | Count |
---|---|
32 | |
25 | |
19 | |
17 | |
16 |