Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi ,
I am working on a Pyramid project. I want to calculate the FTE based on the head count of employees. I am new to this.
Can anyone help me how to do that.
i have the head count of employees and i want to calculate FTE.
Pls healp.

Thanks
Posted
Comments
Sergey Alexandrovich Kryukov 22-Nov-12 1:57am    
Do you think "FTE" is related to computing? What's the problem?
--SA

1 solution

Should be a simple multiplication
C#
// FTE in man hours
// workingTime as System.TimeSpan
double FTE = headCount * workingTime.TotalHours();

If I misinterpret your question, please edit it and clarify.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900