Perhaps you could use a query to calculate the count of weekdays. Something like:
SELECT Count(YourTableName.FieldNameToCount) AS NumOfWDays
FROM YourTableName
WHERE (((YourTableName.YourDateFieldName) Between [Start Date] And Date()) AND ((Weekday([YourDateFieldName]))<>1 And...