Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I think the issue is rather easy but I got stucked here and trying to find a solution since couple of hours.
Data pulles from SQL server.
I would need to have % of absenteeism per month. In excel I would do something like that:
sumifs(absHours,projectCriteriaRange,project,monthCriteriaRange,month)/sumifs(plannedHours,projectCriteriaRange,project,monthCriteriaRange,month)
Based on that I would be able to build graph that would show evolution on absenteeism on monthly basis.
My issue with PowerBI is, that it is giving me total amount of absence and presence hours (that is also great) but is not returning abs% per month correctly. I can only make it to "Show value as Porcentage of grand total".
Any advice how I could show what is the % of blueish part of the column vs yellowish+blueish?
Thanks!
Solved! Go to Solution.
Hi @Lucjan_Szulik,
Please try measure:
percentage = CALCULATE ( SUM ( Project[Hours] ), FILTER ( Project, Project[Type] = "Absence" ) ) / SUM ( Project[Hours] )
Best regards,
Yuliana Gu
Hi @Lucjan_Szulik,
Please try measure:
percentage = CALCULATE ( SUM ( Project[Hours] ), FILTER ( Project, Project[Type] = "Absence" ) ) / SUM ( Project[Hours] )
Best regards,
Yuliana Gu
Hi Yuiliana,
Seems like this is what I needed!
Thank you very much!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
107 | |
46 | |
24 | |
23 | |
21 |