Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default Calculation Question

I am working on a schedule for my place of business. I am trying to figure
out a way for excel to calculate something we use called FTE. Basically, if
you have an employee work 40 hours a week, that is equal to 1 FTE point. I
would like to be able to take the hours that are totalled up on cells
N5,N7,N9,N11,N13,N15,N17 & N19 and figure out the FTE point value for those
hours in the individual cells.
Any help is appreciated!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default Calculation Question

Couldn't you just divide by 40?

=N5/40
=N7/40
=N9/40
etc...

HTH,
Elkar


"RJ Swain" wrote:

I am working on a schedule for my place of business. I am trying to figure
out a way for excel to calculate something we use called FTE. Basically, if
you have an employee work 40 hours a week, that is equal to 1 FTE point. I
would like to be able to take the hours that are totalled up on cells
N5,N7,N9,N11,N13,N15,N17 & N19 and figure out the FTE point value for those
hours in the individual cells.
Any help is appreciated!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default Calculation Question

Well, the issue I am running into is 40 hours per week per employee so 40
should equal 1 FTE point but trying to get excel to calculate anything less
than 40 hours. So if someone worked only 20 hours it should be .5 FTE where
are 40 hours would be 1 FTE

"Elkar" wrote:

Couldn't you just divide by 40?

=N5/40
=N7/40
=N9/40
etc...

HTH,
Elkar


"RJ Swain" wrote:

I am working on a schedule for my place of business. I am trying to figure
out a way for excel to calculate something we use called FTE. Basically, if
you have an employee work 40 hours a week, that is equal to 1 FTE point. I
would like to be able to take the hours that are totalled up on cells
N5,N7,N9,N11,N13,N15,N17 & N19 and figure out the FTE point value for those
hours in the individual cells.
Any help is appreciated!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Calculation Question

If you had 20 in cell N5, then Elkar's formula would give you 20/40 or
0.5, so what's the problem?

If your hours are stored in Excel time format and formatted as [h],
then you would need to multiply by 24 to get the correct answer, as
times are stored as fractions of a 24-hour day, i.e. the formula would
have to become:

=N5*24/40

etc. and format the cell as Number with 1 or 2 decimal places.

Hope this helps.

Pete

RJ Swain wrote:

Well, the issue I am running into is 40 hours per week per employee so 40
should equal 1 FTE point but trying to get excel to calculate anything less
than 40 hours. So if someone worked only 20 hours it should be .5 FTE where
are 40 hours would be 1 FTE

"Elkar" wrote:

Couldn't you just divide by 40?

=N5/40
=N7/40
=N9/40
etc...

HTH,
Elkar


"RJ Swain" wrote:

I am working on a schedule for my place of business. I am trying to figure
out a way for excel to calculate something we use called FTE. Basically, if
you have an employee work 40 hours a week, that is equal to 1 FTE point. I
would like to be able to take the hours that are totalled up on cells
N5,N7,N9,N11,N13,N15,N17 & N19 and figure out the FTE point value for those
hours in the individual cells.
Any help is appreciated!


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default Calculation Question

HA HA! The evil *24 was missing.. thank you all for your help! greatly
appreicated!


"Pete_UK" wrote:

If you had 20 in cell N5, then Elkar's formula would give you 20/40 or
0.5, so what's the problem?

If your hours are stored in Excel time format and formatted as [h],
then you would need to multiply by 24 to get the correct answer, as
times are stored as fractions of a 24-hour day, i.e. the formula would
have to become:

=N5*24/40

etc. and format the cell as Number with 1 or 2 decimal places.

Hope this helps.

Pete

RJ Swain wrote:

Well, the issue I am running into is 40 hours per week per employee so 40
should equal 1 FTE point but trying to get excel to calculate anything less
than 40 hours. So if someone worked only 20 hours it should be .5 FTE where
are 40 hours would be 1 FTE

"Elkar" wrote:

Couldn't you just divide by 40?

=N5/40
=N7/40
=N9/40
etc...

HTH,
Elkar


"RJ Swain" wrote:

I am working on a schedule for my place of business. I am trying to figure
out a way for excel to calculate something we use called FTE. Basically, if
you have an employee work 40 hours a week, that is equal to 1 FTE point. I
would like to be able to take the hours that are totalled up on cells
N5,N7,N9,N11,N13,N15,N17 & N19 and figure out the FTE point value for those
hours in the individual cells.
Any help is appreciated!





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Calculation Question

Thanks for feeding back.

Pete

RJ Swain wrote:

HA HA! The evil *24 was missing.. thank you all for your help! greatly
appreicated!


"Pete_UK" wrote:

If you had 20 in cell N5, then Elkar's formula would give you 20/40 or
0.5, so what's the problem?

If your hours are stored in Excel time format and formatted as [h],
then you would need to multiply by 24 to get the correct answer, as
times are stored as fractions of a 24-hour day, i.e. the formula would
have to become:

=N5*24/40

etc. and format the cell as Number with 1 or 2 decimal places.

Hope this helps.

Pete

RJ Swain wrote:

Well, the issue I am running into is 40 hours per week per employee so 40
should equal 1 FTE point but trying to get excel to calculate anything less
than 40 hours. So if someone worked only 20 hours it should be .5 FTE where
are 40 hours would be 1 FTE

"Elkar" wrote:

Couldn't you just divide by 40?

=N5/40
=N7/40
=N9/40
etc...

HTH,
Elkar


"RJ Swain" wrote:

I am working on a schedule for my place of business. I am trying to figure
out a way for excel to calculate something we use called FTE. Basically, if
you have an employee work 40 hours a week, that is equal to 1 FTE point. I
would like to be able to take the hours that are totalled up on cells
N5,N7,N9,N11,N13,N15,N17 & N19 and figure out the FTE point value for those
hours in the individual cells.
Any help is appreciated!




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calculation Setting in Excel Stuart Bisset Excel Discussion (Misc queries) 0 June 17th 05 09:54 AM
Question about financial calculation PMT Peter Aitken Excel Worksheet Functions 3 April 7th 05 01:18 PM
How do I use a check box to accept a calculation Joejoethecrackman Excel Discussion (Misc queries) 5 March 22nd 05 08:47 PM
Calculation question Bryan Excel Discussion (Misc queries) 5 March 16th 05 04:24 PM
How do I use a rounded calculation result in another calculation? vnsrod2000 Excel Worksheet Functions 1 January 26th 05 10:11 PM


All times are GMT +1. The time now is 03:54 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"