
=NETWORKDAYS(start_date,end_date,holidays)
Related formulas
Working days left in month
Get work hours between dates
Add business days to date
Get work hours between dates custom schedule
List holidays between two dates
To calculate the number of workdays between two dates, you can use the NETWORKDAYS function. NETWORKDAYS automatically excludes weekends, and it can optionally exclude a custom list of holidays as well.
For example, if you have the date January 4, 2016 (a Monday) in cell B4, and January 11, 2016 (also a Monday) in cell C4, this formula will return 6:
=NETWORKDAYS(B4,C4)
Note that NETWORKDAYS includes both the start and end dates in the calculation if they are workdays.
NETWORKDAYS can also exclude a custom list of holidays. For example, if you have holiday dates in H1:H10, you can tell NETWORKDAYS not to include these dates as workdays by adding that range as a third argument in the formula:
=NETWORKDAYS(B4,C4,H1:H10)
If you need take into account custom weekends (i.e. weekends are Saturday only, Sunday and Monday, etc.) you'll need to switch to the more robust NETWORKDAYS.INTL function, which allows you to set what days of the week are considered are considered weekends, by supplying a weekend argument in the form of a numeric code. See NETWORKDAYS.INTL for more information.
If you need a date n workdays in the past or future, see the WORKDAY function.

=NETWORKDAYS(start_date,end_date,holidays)
Related formulas
Working days left in month
Get work hours between dates
Add business days to date
Get work hours between dates custom schedule
List holidays between two dates
To calculate the number of workdays between two dates, you can use the NETWORKDAYS function. NETWORKDAYS automatically excludes weekends, and it can optionally exclude a custom list of holidays as well.
For example, if you have the date January 4, 2016 (a Monday) in cell B4, and January 11, 2016 (also a Monday) in cell C4, this formula will return 6:
=NETWORKDAYS(B4,C4)
Note that NETWORKDAYS includes both the start and end dates in the calculation if they are workdays.
NETWORKDAYS can also exclude a custom list of holidays. For example, if you have holiday dates in H1:H10, you can tell NETWORKDAYS not to include these dates as workdays by adding that range as a third argument in the formula:
=NETWORKDAYS(B4,C4,H1:H10)
If you need take into account custom weekends (i.e. weekends are Saturday only, Sunday and Monday, etc.) you'll need to switch to the more robust NETWORKDAYS.INTL function, which allows you to set what days of the week are considered are considered weekends, by supplying a weekend argument in the form of a numeric code. See NETWORKDAYS.INTL for more information.
If you need a date n workdays in the past or future, see the WORKDAY function.