Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.