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
Ucboy4
Regular Visitor

ESTABILISHING COUNT OF WORKDAYS FROM STAFF DAILY INPUT

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

1 ACCEPTED SOLUTION
ribisht17
Super User
Super User

@Ucboy4 

 

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

 

View solution in original post

3 REPLIES 3
Ucboy4
Regular Visitor

Hi Ribisht,

 

This actually worked, I trimed the date.

 

thanks a million

gauthamboppana
Solution Specialist
Solution Specialist

@Ucboy4  - Use Distinct count and see if that works.

 

= DISTINCTCOUNT([Date])

 

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 !

ribisht17
Super User
Super User

@Ucboy4 

 

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

 

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.

Top Solution Authors
Top Kudoed Authors