Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How to sum a total in multiple Excel tables
  • How To Sort One Column or Multiple Columns in Excel
  • Reverse List in Excel
  • Conditional Formatting Data bars Examples in Excel
  • Understanding Anova in Excel

References

  • Approximate match with multiple criteria in Excel
  • How to retrieve first match between two ranges in Excel
  • Basic INDEX MATCH approximate in Excel
  • Perform case-sensitive Lookup in Excel
  • How to use Excel FORMULATEXT function

Data Validations

  • Excel Data validation no punctuation
  • Data validation must not exist in list
  • Excel Data validation only dates between
  • Excel Data validation number multiple 100
  • Excel Data validation allow uppercase only

Calculate series of dates by workdays in Excel

by

This tutorials covers how to generate series of dates increment by workdays from a single start date in Excel

If need to generate a dynamic series of dates that are workdays only (i.e. Monday through Friday), you can do so with a simple formula that uses the the WORKDAY function

Formula

=WORKDAY(date,1)

Explanation

 

In the example, B6 is the hard-coded start date and the formula in B7 is:

=WORKDAY(B6,1)

Excel solves this formula by using the WORKDAY function to return the next workday. WORKDAY is programmed to skip forward as needed to the next business day.

IF you need to take into account holidays, you add the optional argument to the WORKDAY function for  holidays:

=WORKDAY(date,1,holidays)

Where holidays is a reference to a list of dates that represent non-working days.

Custom weekends

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 WORKDAY.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 WORKDAY.INTL for more details.

Another way

You can also generate a series of workdays with a formula that uses the WEEKDAY function. In this case, the formula tests the start date to see if is a Saturday or not. If so, 3 days are added to the start date. If not, just one day is added.

=IF(WEEKDAY(date)=6,date+3,date+1)

Post navigation

Previous Post:

DECIMAL function: Description, Usage, Syntax, Examples and Explanation

Next Post:

AVERAGE function: Description, Usage, Syntax, Examples and Explanation

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • SWITCH function example in Excel
  • How to use Excel XOR Function
  • TRUE function: Description, Usage, Syntax, Examples and Explanation
  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • Extract multiple matches into separate rows in Excel

Date Time

  • How to calculate Next working/business day in Excel
  • Calculate time difference in hours as decimal value in Excel
  • How to calculate future date say 6 months ahead in Excel
  • How to determine year is a leap year in Excel
  • Get last day of month in Excel

Grouping

  • How to randomly assign data to groups in Excel
  • Group arbitrary text values in Excel
  • Categorize text with keywords in Excel
  • Group numbers with VLOOKUP in Excel
  • Calculate conditional mode with criteria in Excel

General

  • Excel Operators
  • How to fill cell ranges with random number from fixed set of options in Excel
  • Find, Select, Replace and Go To Special in Excel
  • Count cells that do not contain many strings in Excel
  • Lock Cells in a Worksheet Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning