Calculate business Dates

G

Guest

Hello How do I calculate 4 business weeks from a given date Lets say four
business week from Friday March 2 2007 If the due date falls on a saturday
or Sunday it should be due on Monday thanks
 
G

Guest

Define a Business week? I assume that you want to skip holidays. I think
you need to make a table of holidays. Then count the number of holidays of
holidays in the 4 weeks period. Then add to the present date four weeks plus
holidays. Then test if this date is on a saturday or sunday.

Without Holidays andt the date in Microsoft time format. Make sure the
cell with the formula is formated as a date

=IF(WEEKDAY((A2+28),2)<=5,A2+28,IF(WEEKDAY(A2+28,2)=6,A2+30,A2+29)
)
 
B

Bob Phillips

=NETWORKDAYS(start_date,4)

NETWORKDAYS is an Analysis Toolpak Function, so make sure that that is
installed.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
B

Bob Phillips

Oops, taht should be 20 not 4.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

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

Similar Threads


Top