View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default Calculating the end date?

Hi,

Assuming your Start date is in A1 and the number of business days in B1, and
any company holidays are listed in G1:G4, then this is your formula:

=WORKDAY(A1,B1,G$1:G$4)

In 2003 you need to attach the Analysis ToolPak - Choose Tools, Add-ins and
check Analysis ToolPak
In 2007 nothing to do, this function is built into Excel.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Rae" wrote:

I want to create a test schedule. My knowns are the start_date and number of
days for each tester. So when I plug in the start_date it will automatically
adjust the start and end dates for each tester.

Tester 1 starts testing on 12/08/2008 and it will take him 3 business days
to test; tester 1 should be done testing by 12/11/2008 (calculated based on
start_date and number of business days).

Tester 2 can't start testing until Tester 1 has completed testing, so if
tester 1 is done by 12/11/2008 (this will be the start date for tester 2) and
tester 2 needs 15 business days to test. Tester 2 should be done testing by
12/31/2008 (calculated end date also excluding holidays).

And so forth.... I have 2 additional testers where the start date and end
date needs to be calculated based off of the original start date and the
number of business days.

Thank you,
Rae
(do not have the analysis toolpak that will allow me to use workday or
edate, but I don't think edate will work in this case since I am calculating
end dates)