How To Calculate the Number of Week Days Between two Dates If the start date and end date are both week days, then the total number of week days in between is simply:
(total difference in days) – (total difference in weeks) * 2
DateDiff(dd, @start, @end) – DateDiff(ww, @start, @end)*2
… since the DateDiff() function with weeks returns the number of week "boundaries" that are crossed; i.e., the number...
by Nauman at November 1st, 2009 at 09:11 am