Return next working day 6 months in the future

This tutorial shows how to return the next work day (business day) six months in the future using an Excel formula or VBA

Example: Return next working day 6 months in the future

Return next working day 6 months in the future

METHOD 1. Return next working day 6 months in the future using Excel formula

EXCEL

=WORKDAY(EDATE(B5,6)-1,1,$F$5:$F$12)
This formula uses the Excel WORKDAY and EDATE functions, including the holidays, to calculate the next working day six months in advance from the selected date.

METHOD 1. Return next working day 6 months in the future using VBA

VBA

Sub Next_working_day_in_6_months()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'return the next working day 6 months in the future
ws.Range("C5") = WorksheetFunction.WorkDay(WorksheetFunction.EDate(ws.Range("B5"), 6) - 1, 1, ws.Range("F5:F12"))

End Sub

Explanation about how to return next working day 6 months in the future

EXPLANATION

EXPLANATION

This tutorial shows how to return the next work day (business day) 6 months in the future through the use of an Excel formula or VBA.
Both the Excel formula and VBA methods make use of the WORKDAY and EDATE functions to return the next working day six months in advance.
FORMULA
=WORKDAY(EDATE(date,6)-1,1,holidays)
ARGUMENTS
date: The initial date from which to begin counting the number of working days.
holidays: A list of dates that specifies the holidays to take into consideration.

RELATED TOPICS

Related Topic Description Related Topic and Description
How to return the current date using Excel and VBA
How to return the next work day (business day) using Excel and VBA