I want to add 6 months to a certain date in a formula (Excel)

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

Guest

I need to calculate 6 months (for example) starting from a certain date (not
TODAY)...
 
One way.
With starting date in A1, try this:

=DATE(YEAR(A1),MONTH(A1)+6,DAY(A1))
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


I need to calculate 6 months (for example) starting from a certain date (not
TODAY)...
 
=MIN(DATE(YEAR(A1),MONTH(A1)+{7,6},DAY(A1)*{0,1}))

this caters for 31st March not returning 1st October but 30th September.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Now ... why didn't I think of that?<g>
--

Regards,

RD
----------------------------------------------------------------------------
-------------------
Please keep all correspondence within the Group, so all may benefit !
----------------------------------------------------------------------------
-------------------

=MIN(DATE(YEAR(A1),MONTH(A1)+{7,6},DAY(A1)*{0,1}))

this caters for 31st March not returning 1st October but 30th September.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

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