Add workdays to date

This tutorial shows how to add workdays to a date through the use of an Excel formula, with the WORKDAY function

EXCEL FORMULA 1. Add workdays to date

EXCEL

Hard coded formula
Add workdays to date
Cell reference formula
Add workdays to date
=WORKDAY(B5,7,$F$5:$F$12)
=WORKDAY(B8,$C$5,$F$8:$F$15)
GENERIC FORMULA

=WORKDAY(date,workdays,holidays)

ARGUMENTS
date: A date that you want to add workdays to.
workdays: Number of workdays that you want to add to a date.
holidays: A list of dates that captures the holidays to take into consideration.

GENERIC FORMULA

=WORKDAY(date,workdays,holidays)

ARGUMENTS
date: A date that you want to add workdays to.
workdays: Number of workdays that you want to add to a date.
holidays: A list of dates that captures the holidays to take into consideration.

EXPLANATION

This formula uses the WORKDAY function to add a specific number of workdays to a date.
Click on either the Hard Coded or Cell Reference button to view the formula that has a number of workdays that are to be added to a specific date directly entered into the formula or referenced to a specific cell.

In this example the formula adds 7 workdays to the selected date whilst taking into consideration the impact of holidays. Holidays is optional in this formula, therefore, if you want to ignore the impact of holidays you simply leave out that parameter.

RELATED TOPICS

Related Topic Description Related Topic and Description
How to return the number of working days in a month
How to test if a date is equal to another date and return a value if the test is True or False