writing equations for calculating dates

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How does one write an equation to calculate weeks
remaining prior to a set date?

For example, if there are 16 weeks before a set date, how
is the formula written to subtract today's date from the
set future date of an event with the weeks remaining to
appear in the cells? Hope this makes sense and that is a
simple task. Let me know.
 
If you have a future date of 9/1/04 in Cell A1, then use the following to
determine the number of weeks remaining until that future date:

=(A1-TODAY())/7

--
Michael J. Malinsky
Pittsburgh, PA

"I am a bear of very little brain, and long
words bother me." -- AA Milne, Winne the Pooh
 
The method to do this depends upon how you define "weeks remaining."
Are you wanting FULL weeks? If it is 3.5 weeks remaining, what do yo
want displayed?
Also,
To get weeks with decimal it's simple:
=(A2-B1)/7
If your arithmetic can yield negative date arithmetic:
=ABS((A2-B1)/7
 

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