calculate a date, 10 weeks after a set date & return a specific da

  • Thread starter Thread starter Art3277
  • Start date Start date
A

Art3277

I would like to calculate a date, 10 weeks after a set date and return the
date of that tenth week monday? Is this possible.
 
I would like to calculate a date, 10 weeks after a set date and return the
date of that tenth week monday? Is this possible.


If your set date is in cell A1, try the following formula:

=A1+70-WEEKDAY(A1,3)

Hope this helps / Lars-Åke
 
See if this does what you want...

A1 = some date

B1 formula:

=A1+70-WEEKDAY(A1+70,3)

Format as Date (if needed)
 
Back
Top