5 days from now

  • Thread starter Thread starter johnfli
  • Start date Start date
J

johnfli

I need help in writing a formula (or a macro) that when a date is entered in
one column, in another column, it will calculate what the date in 5 days
will be (counting the date that was entered in) Saturday and Sunday are
not to be counted as part of the 5 days.

thanks
 
Look at the WORKDAY function. You need to install the Analysis Tool Pak to use
it. All is explained in Help.
 
johnfli said:
I need help in writing a formula (or a macro) that when a date i
entered in
one column, in another column, it will calculate what the date in
days
will be (counting the date that was entered in) Saturday and Sunda
are
not to be counted as part of the 5 days.

thanks

Enter your date in cell A1 then in B1 enter:

=if(day(a1)=1,a1+4,a1+6)

You need to format B1 as a date too
 

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

Back
Top