cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Daily Productivity of Crews - Sum of Work Completed / distinct crew

I'm trying to create a productivity dashboard that summarizes work completed by crew / day over a period of time.  For one day the calculation I use is count of WR# / distinct count of crews.  Is there a DAX I can use (sumx maybe?) or something else that will allow me to toggle between day, month or year and have an accurate result?

 

DateCrew#WR#
2/19/202011000
2/19/202021001
2/19/202031002
2/19/202041003
2/19/202041004
2/19/202051005
2/19/202051006
2/19/202061007
2/19/202071008
2/19/202081009
2/19/202091010
2/19/202091011
2/19/2020101012
2/19/2020111013
2/19/2020121014

 

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

You can try this.

 

Percentageee =



var Countwr =CALCULATE(COUNT('Table'[WR#]),FILTER(ALL('Table'),[Date]=MAX([Date])))
var COUNTCrew = CALCULATE(DISTINCTCOUNT('Table'[Crew#]),FILTER(ALL('Table'),[Date]=MAX([Date])))

 

RETURN

 

DIVIDE(Countwr,COUNTCrew)
 
 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

 

Else pls share sample data in text form (not an image). If possible, you can share your .pbix file too.

View solution in original post

4 REPLIES 4
harshnathani
Community Champion
Community Champion

@Anonymous ,

 

 

Create a Date Table.

 

 

link Date Table (Date)  with  Date of your Crew Table.

 

 

Use the following measure.

 

Percentageee =


var Countwr =CALCULATE(COUNT('Table'[WR#]),ALLEXCEPT('Date','Date'[Date]))
var COUNTCrew = CALCULATE(DISTINCTCOUNT('Table'[Crew#]),ALLEXCEPT('Date','Date'[Date]))

RETURN

DIVIDE(Countwr,COUNTCrew)
 
 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

Hi @Anonymous ,

 

You can try this.

 

Percentageee =



var Countwr =CALCULATE(COUNT('Table'[WR#]),FILTER(ALL('Table'),[Date]=MAX([Date])))
var COUNTCrew = CALCULATE(DISTINCTCOUNT('Table'[Crew#]),FILTER(ALL('Table'),[Date]=MAX([Date])))

 

RETURN

 

DIVIDE(Countwr,COUNTCrew)
 
 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

 

Else pls share sample data in text form (not an image). If possible, you can share your .pbix file too.

Anonymous
Not applicable

Harsh,

The formula works great for daily productivity, but when I try to roll it up to month or year, I think it is adding all work completed and dividing by distinct count of crews for the entire time period.  Instead, I need it to take the time period chosen in the dashboard, sum all work completed for the month and divide by the sum of distinct crew count by day.

 

Thank you!

Anonymous
Not applicable

Your requirements are not totally clear... but you can try this:

// Dates is a Date table in the model.
// Joins to T on [Date] and slicing
// by [Date] taken from T is forbidden.
// The date column in T must be hidden.

[Productivity] =
// From the data you've posted it
// follows that each row has a different
// WK#, so COUNTROWS should be used.
var __workDone = COUNTROWS( T )
var __crewCount =
	SUMX(
		Dates[Date],
		CALCULATE(
			DISTINCTCOUNT( T[Crew#] )
		)
	)
var __result =
	DIVIDE( __workDone, __crewCount )
return
	__result

 

Best

D

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors
Top Kudoed Authors