Auto Date Population

  • Thread starter Thread starter theboatdude
  • Start date Start date
T

theboatdude

Hello Everyone -

Here's what it is: I use an Excel-based form to order product. What
want is to set up a chosen cell to show the date of the followin
Tuesday, regardless of when I fill out the form (for instance, if
were to fill out the form today - 7/20/04 - I would want the chose
cell to read the date for the following Tuesday - 7/27/04.

Under different circumstances, I would simply enter a formula to sho
the date X days from today, but I don't always place the order on th
same day.

Can this be done?

Thankx,

C
 
Hi
for your first question use the formula
=A1+7-WEEKDAY(A1-1,3)

For the second question simply add x to your date. e.g.
=A1+X

If you only want to add working days use
=WORKDAY(A1,X)
 
CT,

For a date in cell A1:

=IF(WEEKDAY(A1)<3,INT(A1+3-WEEKDAY(A1)),INT(A1+10-WEEKDAY(A1)))

HTH,
Bernie
MS Excel MVP
 

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