Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have a simple star scheme (dimdate, dimemployee, factworkschedule).
In factworkschedule I have 3columns: EmployeeID, workdate, Activitytype (1 = working, 2 = break etc. 9 = Sickleave). For this question only 1 (working day) and 9 (sickleave day) are relevant.
I want to calculate the sickleave% for the whole company (so all employees for the whole month).
I can succesfully do this using a calculated table with SUMMARIZE (table DAX calculated table , see example attached), creating 2 additional relations in the model, and then measure (Sickleave rate) that uses this calculated table.
I dont like the additional calculated table, I only want to use measure(s). How can I do that?
Note that my solution uses SUMMARIZE, but this is not required (use what you think is best).
The end result should be a % with the sickleave days / workdays, and should be visible per week/day/month and employee/whole company.
See below picture, so I dont want the calculated table and the 2 relations.
See here my datamodel on my Dropbox account: https://www.dropbox.com/s/q3m3zm0b4tzds8o/Sickleave%20rate.pbix?dl=0
Thanks in advance!
Filip
Solved! Go to Solution.
You can use SUMMARIZE within a measure definition but I don't think its necessary in this situation. Try
Sick Leave % =
var sickDays = CALCULATE( COUNTROWS( Workschedule), Workschedule[activitytypeid] = 9 )
var totalDays = CALCULATE( COUNTROWS( Workschedule), Workschedule[activitytypeid] IN {1, 9} )
RETURN DIVIDE( sickDays, totalDays)
Thanks Johnt75,
This is a clean/fast solution!
Regards Filip
You can use SUMMARIZE within a measure definition but I don't think its necessary in this situation. Try
Sick Leave % =
var sickDays = CALCULATE( COUNTROWS( Workschedule), Workschedule[activitytypeid] = 9 )
var totalDays = CALCULATE( COUNTROWS( Workschedule), Workschedule[activitytypeid] IN {1, 9} )
RETURN DIVIDE( sickDays, totalDays)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.