Calculate work days

G

Guest

I am trying to calculate the number of work days between two dates, excluding
weekends and holidays. I have the DateAddW function that successfully
excludes weekends, but it doesn't exclude holidays. How can I do both?
 
G

Guest

Holidays are kind of dependant on the individual (no such thing as a standard
set of holidays)

If you had a table of `known holidays` - that way you could include bank
holidays, extra company holidays, invidual booked holidays, unexpected time
off, whatever you want to stick in it - then it would simply be a matter of...

work days = <number of days excluding weekend days> - <number of individual
holiday days in your holiday table that occure within your date range>

martin :)
 
G

Guest

Thank you very much. I think the information I have already re: how to
calculate work days originally came from you. Now the holiday information
will be all I need. Again - thank you very much.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top