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

Data Analysis

  • How to create running total in an Excel Table
  • Understanding Pivot Tables in Excel
  • Managing Conditional Formatting Rules in Excel
  • Error Bars in Excel
  • What-If Analysis: Scenarios and Goal Seek in Excel

References

  • Count rows that contain specific values in Excel
  • Get nth match with INDEX / MATCH in Excel
  • How to get last row in mixed data with blanks in Excel
  • How to create dynamic named range with OFFSET in Excel
  • How to use Excel COLUMN Function

Data Validations

  • Excel Data validation must contain specific text
  • Excel Data validation date in next 30 days
  • Prevent invalid data entering in specific cells
  • How To Create Drop-down List in Excel
  • Excel Data validation with conditional list

How to calculate most recent day of week in Excel

by

If you want to find the most recent Wednesday, or Saturday, or Monday, given a specific start date, you can use a formula that uses the MOD function.

Formula

=date-MOD(date-dow,7)

Note: If the the date has the same day of week, date will be returned.

Explanation

 

Formulas that use the concept of “day of week” are based on the idea that each day of of the week has a specific number. By default, Excel assigns 1 to Sunday and 7 to Saturday.

In the example formula, B6 is the date 1/16/2015, and the formula in C6 is:

=B6-MOD(B6-7,7)

The number 7 (the number argument in the MOD function) represents the day of week (dow) that you want.

To solve this formula, Excel first subtracts the dow (7 in this case) from the date, then feeds the result into the MOD function as the number. MOD returns the remainder of dividing that number by 7, which is then subtracted from date.

=B6-MOD(B6-7,7)
=B6-MOD(42013,7)
=B6-6
=42014
=1/10/2015

If you want to get the most recent day of week from the current date, you can use the TODAY function, like so:

=TODAY()-MOD(TODAY()-dow,7)

 

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

  • Excel If, Nested If, And/Or Criteria Examples
  • How to use Excel TRUE Function
  • IF with wildcards in Excel
  • NOT function: Description, Usage, Syntax, Examples and Explanation
  • OR function Examples in Excel

Date Time

  • DAY function: Description, Usage, Syntax, Examples and Explanation
  • How to get same date next month or previous month in Excel
  • Get month name from date in Excel
  • Calculate total hours that fall between two times in Excel
  • DATEVALUE function: Description, Usage, Syntax, Examples and Explanation

Grouping

  • Group times into 3 hour buckets in Excel
  • Group numbers with VLOOKUP in Excel
  • Running count group by n size in Excel
  • Map text to numbers in Excel
  • Map inputs to arbitrary values in Excel

General

  • Count cells that contain errors in Excel
  • How to fill cell ranges with random number from fixed set of options in Excel
  • How to calculate percent variance in Excel
  • Delete Blank Rows at Once in Excel
  • How to get amount with percentage in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning