Adding months to a date range

Lou2001

New Member
Joined
Apr 9, 2002
Messages
1
I have a column(B for example) with different dates. In column (C) I need to add these dates plus six months. For example if 1c is July 6th, 2001. I need to add six months to this so that column 1d shows Januaray 6th,2002. How can I do this? Also I ned another column showing +12 months.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
On 2002-04-10 09:33, Lou2001 wrote:
I have a column(B for example) with different dates. In column (C) I need to add these dates plus six months. For example if 1c is July 6th, 2001. I need to add six months to this so that column 1d shows Januaray 6th,2002. How can I do this? Also I ned another column showing +12 months.

=EDATE(A1,6)

will add 6 months to the date in A1.

You need the Analysis Toolpak (via Tools|Add-Ins) if EDATE is not available.

Alternatively:

=DATE(YEAR(A1),MONTH(A1)+6,DAY(A1))
This message was edited by Aladin Akyurek on 2002-04-10 10:03
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,429
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top