Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Team,
I am trying to do create a matrix table to plot Employee and Site in rows and total hrs and % of total hrs just for the specific employees in values.
When i plot this in power bi i get all rows 100% as seen in coloumn D. I would like to get the result as shown in coloumn E.
Solved! Go to Solution.
Measure:
_pct of employee hours =
DIVIDE(
[_total hours], //_total hours = sum(hours)
CALCULATE(
[_total hours],
ALL('Table'),
VALUES('Table'[Employee])
)
)
Measure:
_pct of employee hours =
DIVIDE(
[_total hours], //_total hours = sum(hours)
CALCULATE(
[_total hours],
ALL('Table'),
VALUES('Table'[Employee])
)
)
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.