How to count and subtract Saturday and Sunday.
The easiest way to count how many day-of-week days (ie. Sundays) are between two dates is like the following:
intDaysInPeriod = DateDiff("d", StartDate, EndDate)
intSaturdays = DateDiff("ww", StartDate, EndDate, vbSaturday)...