Calculate Full-time Equivalents (FTEs) in a Month Using Dates

MntnrMark

Board Regular
Joined
Dec 18, 2012
Messages
57
1613926227774.png


I'm trying to calculate full-time equivalents (FTEs) in a month. (I've used conditional formatting to shade the bars in light blue in the above example, but I added dark blue shapes for better visual representation in communicating the Start and Finish dates for this example.)

Using the example above, I know that for Row 3, in Columns F and G the FTE (which I want to show in Cells F3 and G3 as values of 1.0) should be 1.0 because one person will be required throughout the entirety of the months of Aug and Sep for Task 1. For Cells E3,D4 and F5 there will be a fractional FTE (a number less than 1.0) that I want to show in those cells, as Tasks 1, 2 and 3 all start at some point in those months. Similarly, I also know that for Cells H3, F4 and H5 there will be fractional (<1.0) FTEs that I want to show in those cells, as Tasks 1, 2 and 3 end in those months. Where there is no activity in a month (such as in Cells D3,G4, H4, D5 and E5) I want nothing to appear.

I wrote a very long formula with IFs and ANDs trying to cover every scenario, but it is very cumbersome and, because this is a very large spreadsheet with lots of values, it essentially crashed the file when I tried to copy-and-paste that long formula as many places as I needed to paste it.

Is there a simple way to calculate and show the FTEs above in Cells D3 - H5? I'm thinking I'm making this harder than it needs to be, but I'm completely stumped! Thanks, as always, for the assistance. This board is a life saver!
 

Attachments

  • 1613924735831.png
    1613924735831.png
    10.2 KB · Views: 22
  • 1613925010880.png
    1613925010880.png
    10.9 KB · Views: 20

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
If you calculate fractional FTEs using calendar days, try the following:
Excel Formula:
=MAX(0,MIN($C3,EOMONTH(D$1,0))-MAX($B3,D$1)+1)/DAY(EOMONTH(D$1,0))
If you calculate fractional FTEs using business days, try the following:
Excel Formula:
=MAX(0,NETWORKDAYS(MAX($B3,D$1),MIN($C3,EOMONTH(D$1,0)),Holidays))/NETWORKDAYS(D$1,EOMONTH(D$1,0),Holidays)
where Holidays is a named range containing holiday dates.
Finally, if you do not want see 0.0 FTEs, custom-format the cells as 0.0;;
 
Upvote 0
If you calculate fractional FTEs using calendar days, try the following:
Excel Formula:
=MAX(0,MIN($C3,EOMONTH(D$1,0))-MAX($B3,D$1)+1)/DAY(EOMONTH(D$1,0))
If you calculate fractional FTEs using business days, try the following:
Excel Formula:
=MAX(0,NETWORKDAYS(MAX($B3,D$1),MIN($C3,EOMONTH(D$1,0)),Holidays))/NETWORKDAYS(D$1,EOMONTH(D$1,0),Holidays)
where Holidays is a named range containing holiday dates.
Finally, if you do not want see 0.0 FTEs, custom-format the cells as 0.0;;
FANTASTIC! However, there is only one minor (I hope adjustment) to make. When a task extends into only the first day of a month (i.e., the last day of the task is on the first day of a month) the formula is going me a zero; it needs to give 1/31, or 1/30 (Apr, Jun, Sep, Nov), or 1/28 (Feb). Is there a way to modify the formula to do that? Otherwise, it does EXACTLY what I needed. Thanks so much!
 
Upvote 0
... When a task extends into only the first day of a month ... the formula is going me a zero; it needs to give 1/31...
When formatted as 0.0;; 1/31 does appear as 0.0. Try formatting the cell as 0.00;; and you should see 0.03.
 
Upvote 0
If you calculate fractional FTEs using calendar days, try the following:
Excel Formula:
=MAX(0,MIN($C3,EOMONTH(D$1,0))-MAX($B3,D$1)+1)/DAY(EOMONTH(D$1,0))
If you calculate fractional FTEs using business days, try the following:
Excel Formula:
=MAX(0,NETWORKDAYS(MAX($B3,D$1),MIN($C3,EOMONTH(D$1,0)),Holidays))/NETWORKDAYS(D$1,EOMONTH(D$1,0),Holidays)
where Holidays is a named range containing holiday dates.
Finally, if you do not want see 0.0 FTEs, custom-format the cells as 0.0;;
Thanks so much for this! Really helpful.

In addition to this I have another Start and End Date column where between these dates I'd like the FTE to be reduced to zero/pro-rated down. End result hopefully as follows:

Break Start End Dates FTE.PNG


Are you able to assist with this? Many thanks in advance!!! :)
 
Upvote 0
I can't edit my post, but I am using the networkdays solution you provided, in case that's useful to know.
 
Upvote 0
The following formula returns the expected results for the dataset in Post #6:
Excel Formula:
=MAX(0,NETWORKDAYS(MAX($B3,G$2),MIN($E3+123456*($E3=0)-1,EOMONTH(G$2,0)),Holidays))/NETWORKDAYS(G$2,EOMONTH(G$2,0),Holidays)+MAX(0,NETWORKDAYS(MAX($F3+123456*($F3=0)+1,G$2),MIN($C3+123456*($C3=0),EOMONTH(G$2,0)),Holidays))/NETWORKDAYS(G$2,EOMONTH(G$2,0),Holidays)
 
Upvote 0
The following formula returns the expected results for the dataset in Post #6:
Excel Formula:
=MAX(0,NETWORKDAYS(MAX($B3,G$2),MIN($E3+123456*($E3=0)-1,EOMONTH(G$2,0)),Holidays))/NETWORKDAYS(G$2,EOMONTH(G$2,0),Holidays)+MAX(0,NETWORKDAYS(MAX($F3+123456*($F3=0)+1,G$2),MIN($C3+123456*($C3=0),EOMONTH(G$2,0)),Holidays))/NETWORKDAYS(G$2,EOMONTH(G$2,0),Holidays)
Remarkable. Thank you very much! Now to try and understand what's going on.
 
Upvote 0
The following formula returns the expected results for the dataset in Post #6:
Excel Formula:
=MAX(0,NETWORKDAYS(MAX($B3,G$2),MIN($E3+123456*($E3=0)-1,EOMONTH(G$2,0)),Holidays))/NETWORKDAYS(G$2,EOMONTH(G$2,0),Holidays)+MAX(0,NETWORKDAYS(MAX($F3+123456*($F3=0)+1,G$2),MIN($C3+123456*($C3=0),EOMONTH(G$2,0)),Holidays))/NETWORKDAYS(G$2,EOMONTH(G$2,0),Holidays)
Hi Tetra, I've just got round to implementing this and it doesn't appear to work for me.

Your solution references G$2 when I think you meant H$2 - so I changed that but I get the following results still (results above 1.0) Any ideas?

Many, many thanks in advance!
Screenshot 2024-01-23 203311.png
 
Upvote 0

Forum statistics

Threads
1,214,515
Messages
6,119,970
Members
448,933
Latest member
Bluedbw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top