Update Date field

mspincus

New Member
Joined
Jul 30, 2010
Messages
37
How do you update a date to current yr. I have a column with 3/1/2018, with the next 5/15/2018 and I need them updated to to 2019. Meaning 3/1/2019, and 5/15/2019
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
1- I would select the range with dates, find 2018 and replace with 2019.

OR if formula is needed.

2- If A1 is 03/01/2018, then I would used following formula in the adjacent cell:
Code:
=DATE(YEAR(A1)+1, MONTH(A1), DAY(A1))

This will increment the year. Then I would copy and paste below as necessary, and copy and paste values into the source range.
 
Upvote 0
i dont know what you mean. have never used code. Sorry. I am a horrible mrexcel person. But THANK YOU for being so patient
 
Upvote 0
If your data starts in C2, Then please enter the following formula in D2 or E2 or other empty column :
Code:
=DATE(2019, MONTH(C2), DAY(C2))
 
Upvote 0
Hi,

You can also use EDATE, format result cells as "Date":


Book1
CD
23/1/20183/1/2019
35/15/20185/15/2019
Sheet560
Cell Formulas
RangeFormula
D2=EDATE(C2,12)
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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