Automatic Dates

  • Thread starter Thread starter lucky134me
  • Start date Start date
L

lucky134me

I don't even know what to call it....Sorry.

What I want to do is...

Put an initial date in one column, and have dates automatically
calculated for 2 and 6-month increments.

For instance.... Input date 2mo Review Date 6mo Review Date


Any help would be appreciated by my co-workers and I. :D


Debra
 
Is this what you're looking for?

Assuming that your input date is in cell A1:

2 Month Review

Cell B1
=IF(DAY(A1)>DAY(DATE(YEAR(A1),MONTH(A1)+3,1)-1),DATE(YEAR(A1),MONTH(A1)+3,1)
-1,DATE(YEAR(A1),MONTH(A1)+2,DAY(A1)))

6 Month Review

Cell C1
=IF(DAY(A1)>DAY(DATE(YEAR(A1),MONTH(A1)+7,1)-1),DATE(YEAR(A1),MONTH(A1)+7,1)
-1,DATE(YEAR(A1),MONTH(A1)+6,DAY(A1)))

Hope this helps!
 
Wonderful..That's perfect.
Now...How do I make it work for the whole row/column?


Thanks again,
Debra
 
Domenic:
I'd like to create a UDF say SixMonthsAway()
which would take the date 5/15/04 and produce 11/15/04.
How would I do this?
TIA,
 

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