Counting Holidays

J

John

How can I count the number of holidays between 2 dates?
Do I need to create a list? Can I import a list
 
J

Jim

Because there is such a wide variety of holidays, you will have to create
your list of holidays. Once you have created the list (by date, not name),
you can use:
=COUNTIF(C2:C1800,">=7/10/03")-COUNTIF(C1:C18,">12/10/03")
to find the number of holidays in your list between July10, 2003 and
December 12, 2003.
 
2

2rrs

try this:

=NETWORKDAYS(start_date,end_date)-NETWORKDAYS(start_date,end_date,Holidays)

You will need to create a list of Holidays; this list can be given a
named range "Holidays"
 

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