Hi, I would like to calculate the measure "Productivity" with the below criteria:
Here is the sample.
Current Measure:
Expected Output:
Solved! Go to Solution.
@PBI_newuser , Assume you have quarterly working hours measure or simple sum measure
QTD hours= CALCULATE(SUM(Table[Hours]),DATESQTD(('Date'[Date])))
Hours Qtr > 5
sumx(filter( values(Table[User]), [QTD hours] >5 ) , [QTD hours])
You can use what if numeric field measure in place of 5
https://docs.microsoft.com/en-us/power-bi/desktop-what-if
@PBI_newuser , Assume you have quarterly working hours measure or simple sum measure
QTD hours= CALCULATE(SUM(Table[Hours]),DATESQTD(('Date'[Date])))
Hours Qtr > 5
sumx(filter( values(Table[User]), [QTD hours] >5 ) , [QTD hours])
You can use what if numeric field measure in place of 5
https://docs.microsoft.com/en-us/power-bi/desktop-what-if
User | Count |
---|---|
140 | |
86 | |
64 | |
60 | |
57 |
User | Count |
---|---|
211 | |
109 | |
89 | |
76 | |
74 |