Date Arithmetic Q

  • Thread starter Thread starter Applewine
  • Start date Start date
A

Applewine

My project involves setting evaluation dates from a hir
date...evaluations would begin in the first 3 months, then every
months thereafter.

The problem is, I cannot just add 90 days to get the evaluation date
as that changes lets say, 1/5/04 to 4/3/04...I need it instead to sho
1/5/04 to 4/5/04.

The Datedif function gives inaccurate results (at least, as I've use
it)...any other ideas to roll the month ONLY forward 3 units
 
Try adding months like so

=DATE(YEAR(A1),MONTH(A1)+3,DAY(A1))

This is fine as long as you're not dealing in month ends, as some months
could have a day 31, but 3 months forward doesn't

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Your solution was right on!
I got so enamoured of more complex functions that I missed that very
simple straightforward approach...kudos!
 

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