I have to give props to Chuck Pearson for the array formula that finds the Number of Mondays (this can be adjusted to any day you wish) between dates.
Here is the formula that I used. It is an array formula so you will need to use Ctl Shft Enter to enter it.
=NETWORKDAYS(A2,B2)+SUM(IF(WEEKDAY(A2-1+ROW(INDIRECT("1:"&TRUNC(B2-A2)+1)))=1,1,0))/2+SUM(IF(WEEKDAY(A2-1+ROW(INDIRECT("1:"&TRUNC(B2-A2)+1)))=7,1,0))/2
The assumptions are that the start date is in cell A2 and the End date is in Cell B2. The NETWORKDAYS function will give you all weekdays in the absence of a holiday arguemnt. The two sum formulas count the number of Saturdays and Sundays and divides them by 2 so that effectively they equal 1 day.
Bookmarks