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

Data Analysis

  • How to calculate average last N values in a table in Excel
  • How to calculate current stock or inventory in Excel
  • Excel Line Chart
  • How to count table columns in Excel
  • Conditional Formatting Color Scales Examples in Excel

References

  • LOOKUP function: Description, Usage, Syntax, Examples and Explanation
  • CHOOSE function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel LOOKUP Function
  • Convert text string to valid reference in Excel using Indirect function
  • Vlookup Examples in Excel

Data Validations

  • Prevent invalid data entering in specific cells
  • Excel Data validation exists in list
  • Excel Data validation must contain specific text
  • Excel Data validation specific characters only
  • Excel Data validation require unique number

Count day of week between dates in Excel

by

This tutorial shows how to Count day of week between dates in Excel using example below.

To count the number of Mondays, Fridays, Sundays, etc. between two dates you can use an array formula that uses several functions: SUMPRODUCT, WEEKDAY, ROW, and INDIRECT.

 Formula

=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(date1&":"&date2)))=dow))

Explanation

In the example shown, the formula in cell E6 is

=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(B6&":"&C6)))=D6))

How this formula works

At the core, this formula uses the WEEKDAY function to test a number of dates to see if they land on a given day of week (dow) and the SUMPRODUCT function to tally up the total.

Worked Example:   SUMPRODUCT function: Description, Usage, Syntax, Examples and Explanation

When given a date, WEEKDAY simply returns a number between 1 and 7 that corresponds to a particular day of the week. With default settings, 1 = Sunday and 7 = Saturday. So, 2 = Monday, 6 = Friday, and so on.

The trick to this formula is understanding that dates in Excel are just serial numbers that begin on Jan 1, 1900. For example, January 1, 2016 is the serial number 42370, and January 8 is 42377. Dates in Excel only look like dates when a date number format is applied.

Worked Example:   How to use Excel ROW Function

So, the question becomes – how can you construct an array of dates that you can feed into the WEEKDAY function to find out corresponding days of week?

The answer is to use ROW with INDIRECT like so:

ROW(INDIRECT(date1&":"&date2))

INDIRECT allows the concatenated dates “42370:42377” to be interpreted as row numbers. Then the ROW function returns an array like this:

Worked Example:   Get cell content at given row and column in Excel

{42370;42371;42372;42373;42374;42375;42376;42377}

The WEEKDAY function evaluates these numbers as dates and returns this array:

{6;7;1;2;3;4;5;6}

which is tested against the given day of week (6 in this case, from D6). Once the results of the test are converted to 1s and 0s with the double hyphen, this array is processed by SUMPRODUCT:

{1;0;0;0;0;0;0;1}

Which returns 2.

Post navigation

Previous Post:

Get day from date in Excel

Next Post:

Calculate loan interest in given year in Excel

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

  • How to use Excel AND Function
  • Invoice status with nested if in Excel
  • How to use IFS function in Excel
  • FALSE function: Description, Usage, Syntax, Examples and Explanation
  • AND function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • Pad week numbers with zeros in Excel
  • Add months to date in Excel
  • How to calculate percent of year complete in Excel
  • Display Days in month in Excel
  • Display the current date and time in Excel

Grouping

  • Categorize text with keywords in Excel
  • How to randomly assign people to groups in Excel
  • Map inputs to arbitrary values in Excel
  • Calculate conditional mode with criteria in Excel
  • If cell contains one of many things in Excel

General

  • Select, Insert, Rename, Move, Delete Worksheets in Excel
  • How to fill cell ranges with random number from fixed set of options in Excel
  • 44 Practical Excel IF function Examples
  • Check if range contains a value not in another range in Excel
  • How to make excel worksheets print on one page?
© 2023 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning