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

J

Joana

I need to calculate 6 months (for example) starting from a certain date (not
TODAY)...
 
R

RagDyeR

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)...
 
B

Bob Phillips

=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)
 
R

RagDyeR

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)
 
Top