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

Data Analysis

  • Data Series in Excel
  • How to conditionally sum numeric data in an Excel table using SUMIFS
  • Example of COUNTIFS with variable table column in Excel
  • Move chart to a separate worksheet in Excel
  • Conflicting Multiple Conditional Formatting Rules in Excel

References

  • MATCH function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel ROW Function
  • How to use Excel COLUMN Function
  • VLOOKUP function: Description, Usage, Syntax, Examples and Explanation
  • Count rows with at least n matching values

Data Validations

  • How To Create Drop-down List in Excel
  • Excel Data validation don’t exceed total
  • Excel Data validation require unique number
  • Excel Data validation allow weekday only
  • Excel Data validation unique values only

How to calculate next day of week in Excel

by

To return the next specific day of week (i.e. the next Wednesday, or Friday, or Monday) with a given start date, you can use a formula based on the WEEKDAY function.

Formula

=date+7-WEEKDAY(date+7-dow)

Explanation

 In the example shown, the formula in D6 is:

=B6+7-WEEKDAY(B6+7-2)

Where B6 contains the date Friday, January 16, 2015, and 2 represents Monday, the “dow”. The result is Monday, January 9, 2015.

To get a different day of week, use a different value for “dow” in the formula. With default settings, the WEEKDAY function uses a scheme where Sunday =1, Monday=2, Tuesday=3, Wednesday=4, Thursday=5, Friday=6, and Saturday=7.

How the formula works

In Excel, the concept of “weekday” or “day of week” is based on the idea that each day of of the week has a specific number. With default settings, the WEEKDAY function treats Sunday as the first day of the week (1), and Saturday as the last day (7). When given a valid date, the WEEKDAY function will return a number between 1 and 7.

To find the next day of week, this formula first rolls the date forward by 7 days, then steps back to the correct date by subtracting the result of a calculation that uses the WEEKDAY function. In the example shown the formulas in row 6 are as follows:

=B6+7-WEEKDAY(B6+7-7) // C6, get next Saturday
=B6+7-WEEKDAY(B6+7-2) // D6, get next Monday

In the first formula (C6), the number 7 (at the end) represents Saturday. In the second formula (D6), the number is 2, for Monday.

In D6, the formula is solved like this:

=B6+7-WEEKDAY(B6+7-2)
=42027-WEEKDAY(42025)
=42027-4
=42023
=1/9/2015

Note: when the given date is already the desired day of week, the original date will be returned.

Next day of week from today

To get the next day of week from the current date, you can use the TODAY function, like so:

=TODAY()+7-WEEKDAY(TODAY()+7-dow)

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

  • AND function: Description, Usage, Syntax, Examples and Explanation
  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • How to use IFS function in Excel
  • TRUE function: Description, Usage, Syntax, Examples and Explanation
  • OR function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • Add workdays no weekends in Excel
  • YEAR function: Description, Usage, Syntax, Examples and Explanation
  • Get project midpoint in Excel
  • ISOWEEKNUM function: Description, Usage, Syntax, Examples and Explanation
  • Custom weekday abbreviation in Excel

Grouping

  • Map inputs to arbitrary values in Excel
  • Running count group by n size in Excel
  • How to randomly assign people to groups in Excel
  • Group times into 3 hour buckets in Excel
  • Group numbers with VLOOKUP in Excel

General

  • AutoFit Column Width, AutoFit Row Height in Excel
  • Count cells less than in Excel
  • Convert column number to letter in Excel
  • Advanced Number Formats in Excel
  • How to generate random number weighted probability in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning