Written by Allen Wyatt (last updated October 12, 2024)
This tip applies to Excel 97, 2000, 2002, and 2003
Using Excel to calculate a date in the future is rather easy. If you have a cell (such as C3) that contains a starting date, you can simply use a formula such as the following in a different cell:
=C3 + 3
If you format the cell with the formula as a date, it will be three days in the future.
When you want to calculate workdays, the task gets trickier. For instance, you only want to return a date that is between Monday and Friday. If the starting date was a Thursday, this means the return date should be Monday, even though Sunday is the real day that is three days hence.
One quick way to figure a date three workdays in the future is to use the CHOOSE worksheet function. For instance, let's say you have the issue date for a document, and you store that date in cell B5. If you want cell B6 to show a date three workdays later, then you would place the following formula in cell B6 and make sure it is formatted as a date:
=B5 + CHOOSE(WEEKDAY(B5), 3, 3, 3, 5, 5, 5, 4)
This formula assumes that workdays are Monday through Friday. You can tinker with it to pick a different five-day workweek, if desired.
If you also want your formula to take holidays into account, then you must get a bit more creative. For these instances you can use the WORKDAY function, which is included as part of the Analysis ToolPak add-in. This means that you must make sure the Analysis ToolPak add-in is loaded before you can use WORKDAY. You can check if it is loaded by choosing Add-Ins from the Tools menu. Once the add-in is loaded, you could use the following formula in cell B6 to calculate the target date:
=WORKDAY(B5,3)
After you format the cell as a date, it will show the date three workdays in the future. To include holidays, the simplest way is to set up your holidays in the worksheet. For instance, you might put your company holidays in the worksheet in cells K4 through K10. Then, select the cells and give them a name, such as Holidays. You can now use your holiday rante in the WORKDAY function. Change the formula in cell B6 so it looks like this:
=WORKDAY(B5,3,Holidays)
Now the function will always take your holidays into account when returning a date three workdays in the future.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2164) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Calculating Future Workdays.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
Want to be able to take information that is in one cell and match it to data that is contained in a table within a ...
Discover MoreOne of the most useful function in Excel is VLOOKUP. One thing it won't do, however, is allow you to lookup information ...
Discover MoreFunctions are at the heart of Excel's power in working with data. One of the most misunderstood functions provided by ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments