The WORKDAY returns a number that represents a date that is the indicated number of working days before or after a date (the starting date). Working days exclude weekends and any dates identified as holidays. For example, if you start a project on January 25, 2010 and the project requires 10 working days to complete, the WORKDAY function can calculate the date you will finish the project. A working day consists of a weekday (Monday through Friday).
=WORKDAY("1/25/2010",10)
returns
7-Feb-06
The syntax for the WORKDAY function is:
WORKDAY(start_date,days,holidays)
The NETWORKDAYS function’s arguments are as follows:
- Start_date: A date that represents the start date.
- Days: The number of nonweekend and nonholiday days before or after start_date. A positive value for days yields a future date; a negative value yields a past date.
- Holidays: An optional range of one or more dates to exclude from the working calendar.