end date

  • Thread starter Thread starter ADK
  • Start date Start date
A

ADK

If I input a start date in a cell, and give the number of days required to
complete the task in another cell.......How can I compute the end date
omitting the weekends (Saturday and Sunday)?

thanks
 
Try this:

A1 = date
B1 = number of days

=WORKDAY(A1,B1)

Format as DATE

Note that the WORKDAY function requires that the Analysis ToolPak add-in be
installed.

Biff
 
so easy, thanks

T. Valko said:
Try this:

A1 = date
B1 = number of days

=WORKDAY(A1,B1)

Format as DATE

Note that the WORKDAY function requires that the Analysis ToolPak add-in
be installed.

Biff
 
Back
Top