Open a spread sheet program such as Excel. Click "New Worksheet" to create a new worksheet.
Enter the start date of the project in the first row of the first column. Type the end date for the project in the row immediately below that.
Type the dates of any holidays that your company observed between the start and end dates of the project in a new column.
Define a blank cell with a function that determines the number of weekdays between two given dates. For example, in Excel, type "=NETWORKDAYS(start_date, end_date)" without the quotation marks to determine the number of weekdays between the two given dates.
Subtract the array of holidays from the number of workdays in the range to find the net workdays. For example, in Excel, type "=NETWORKDAYS(start_date, end_date) -- Holiday_Start:Holiday_End" without the quotation marks.