Step1
Learn the syntax of NETWORKDAYS. It is NETWORKDAYS(start_date, end_date[, holidays]) where start_date is the first date and end_date is the last date of the date range. Holidays is an optional argument that specifies the holidays to exclude from the calculation.
Step2
Observe that Excel stores dates internally as a positive number representing the number of days beginning with a default date. Windows uses January 1, 1900, as serial number 1 and Excel for the Macintosh uses January 2, 1904, as serial number 1.
Step5
Study some examples of NETWORKDAYS by entering the following in an Excel spreadsheet:
Row 1: Date, Description;
Row 2: 11/26/2008, Holiday;
Row 3: 12/4/2008, Holiday;
Row 4: 1/21/2009, Holiday.
=NETWORKDAYS(DATE("2008,10,1"),DATE("2009,1,22"),A2:A4) returns 105. There are 105 weekdays between October 1, 2008, and January 22, 2009, not counting the holidays entered as 11/26/2008, 12/4/2008 and 1/21/2009.