Forum Discussion
Forecast Remaining Capacity for Succeeding Years
Hi third_hicana ,
it looks as if you have to calculate the average of the maximum capacity and subtract the sum of the project assigned capacities from it.
A measure like this would do it:
RemainingCapacityByMonth =
SUMX (
VALUES ( Table2[Month] ),
CALCULATE ( AVERAGE ( Table2[Maximum Capacity] ) )
- CALCULATE ( SUM ( Table2[Project Capacity Assigned] ) )
)
Make sure to replace the Month-column by a reference to the month column of your calendar table.
Also, you might have to add the employee id to the iterated rows to create the correct result if no employee is selected on the visual.
- third_hicana3 years ago
Helper IV
Hi ImkeF I have already ID number for employees. What I need to achieve is a montly check and balance of how many days available left to each employee and not the average. I cannot also subtract the sum of assigned capacities because some of the projects end in different months. So my desire outcome is a monthly check of days left.