BUSINESS DAYS - Need function that will list next 3 business days.

G

Guest

This seems simple but I can't seem to figure out how to do it.

In a worksheet I have a cell into which today's date is entered automatically.
Using =Now()

I want excel to give me the next three business days (i.e. next 3 days
excluding holidays and weekends)

For example if today is Thursday 2/15, I want it to give me
Friday 2/16
Monday 2/19
Tuesday 2/20.

Any bright ideas?
Monday 2/
 
N

NickHK

How do you know the holidays ?
e.g. Monday & Tuesday are holidays for me in HK.

Weekday( ) can tell the day of the week.

NickHK
 
G

Guest

If your original date is A1 in B1 =WORKDAY(A1,1)
in B2 =WORKDAY(A1,2)
in B3 =WORKDAY(A1,3)

(from this ng)
 
B

Bob Phillips

Don't forget the holidays

=WORKDAY(A1,1,holidays)

where holidays is named range of holiday dates.

--
HTH

Bob Phillips

(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

Top