Hi,
Forgot in my reply to add the calculation back to the FTE number.
This should do the trick:
| A | B | C | D |
---|
STD HOURS | HIRE DATE | END DATE | | |
| | | | |
| | | | |
<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
[TD="align: center"]1[/TD]
[TD="align: center"]FTE[/TD]
[TD="align: center"]2[/TD]
[TD="align: right"]40:00:00[/TD]
[TD="align: right"]8-1-2015[/TD]
[TD="align: right"]30-11-2015[/TD]
[TD="align: center"]1,34[/TD]
[TD="align: center"]3[/TD]
[TD="align: right"]24:00:00[/TD]
[TD="align: right"]15-9-2014[/TD]
[TD="align: right"][/TD]
[TD="align: center"]0,83[/TD]
</tbody>
Sheet1
[TABLE="width: 85%"]
<tbody>[TR]
[TD]
Worksheet Formulas[TABLE="width: 100%"]
<thead>[TR="bgcolor: #DAE7F5"]
[TH="width: 10px"]Cell[/TH]
[TH="align: left"]Formula[/TH]
[/TR]
</thead><tbody>[TR]
[TH="width: 10px, bgcolor: #DAE7F5"]D2[/TH]
[TD="align: left"]=(
NETWORKDAYS(B2,IF(ISBLANK(C2),TODAY(),C2))*((A2*24)/40))/173.33
[/TD]
[/TR]
[TR]
[TH="width: 10px, bgcolor: #DAE7F5"]D3[/TH]
[TD="align: left"]=(
NETWORKDAYS(B3,IF(ISBLANK(C3),TODAY(),C3))*((A3*24)/40))/173.33[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]
The formula part
((A2*24)/40)) is added because i was unsure if the standard hours in column A where numerical formatted or as Time formatted.
My example above is formatted as time.