Excel Formula: Count Day of Week between two dates
This tutorial provides the formula to count a specific weekday between two given dates in Excel.
If you want to follow along with this tutorial, please download the example spreadsheet.
Generic formula:
SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(start_date&":"&end_date)))=week_day)) |
Syntaxt and Arguments
Start_date, end_date: the two dates that you want to count a specific weekday between. |
Week_day: a number that indicates the weekday that you want to count the number between two dates. |
Week_day number
Weekday | Number |
Sunday | 1 |
Monday | 2 |
Tuesday | 3 |
Wednesday | 4 |
Thursday | 5 |
Friday | 6 |
Saturday | 7 |
Return Value
The formula returns to a numeric value.
How this formula works
In cell B3 and C3 are the two dates you want to count the specific weekday between, and in the E3 is the weekday number, please use formula as this:
=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(B3&":"&C3)))=E3)) |
Press Enter key to get the result, then if you need, drag the auto fill handle to apply the formula to other cells.
Explanation
INDIRECT function: returns a valid worksheet reference.
ROW function: returns row number of the reference.
The formula ROW(INDIRECT(B3&":"&C3)), returns an array result as this:
{43933;43934;43935;43936;43937;43938;43939;43940;43941;43942;43943;43944}
Since B3:C3 can be seen as the date range 43933:43944 (the dates are stored as numbers in Excel).
WEEKDAY function: gets the day of week (1-7) from a given date.
The formula WEEKDAY(ROW(INDIRECT(B3&":"&C3)) returns an array result as this:
{1;2;3;4;5;6;7;1;2;3;4;5}
SUMPRODUCT function: returns the result of multiplied and summed arrays.
Now the formula calculates as below:
=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(B3&":"&C3)))=E3))
=SUMPRODUCT(--({1;2;3;4;5;6;7;1;2;3;4;5}=E3))
=SUMPRODUCT(--{FALSE;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE})
=1
Relative Formulas
- Count Weekdays only between two dates
This tutorial provides formulas to count the days excluding weekends and holidays between two dates - Count Days Left In Current Month Or Year
Introducing formulas for counting the days left in current month or year. - Count Days Between Two Dates
Here provide formulas to count days, weeks, months or years between two dates. - Convert Time To Decimal Minutes
In this tutorial, it provides a formula for converting time to decimal minutes in Excel.
Relative Functions
- Excel IF Function
Test for specified conditions, then returns the corresponding values - Excel VALUE Function
Convert text to number. - Excel MONTH Function
The MONTH is used to get the month as integer number (1 to 12) from date. - Excel DAY Function
DAY function gets the day as a number (1 to 31) from a date - Excel YEAR Function
The YEAR function returns the year based on the given date in a 4-digit serial number format.
The Best Office Productivity Tools
Kutools for Excel - Helps You To Stand Out From Crowd
Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need is Just A Click Away...

Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)
- One second to switch between dozens of open documents!
- Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
- Increases your productivity by 50% when viewing and editing multiple documents.
- Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Edge and Firefox.
