Adding Year to Multiple Cells

Joined
Jun 8, 2015
Messages
2
Fairly new to excel. I am working on organizing phone records that were inserted from a PDF. There are multiple records for each date. They are listed for January 1 2014, January 2 2014, etc.

1/1
1/1
1/1
1/1
1/1
1/1
1/1
1/1
1/2
1/2
1/2

and so on...

Is there a way to add 2014 to each of these throughout the end of the year?
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
What format are the 1/1, etc in ?
Is that simply text or a date ?

Maybe something like this in Column "B"

Code:
=TEXT(A2,"dd-mm")&" 2014"
 
Upvote 0
if you already have a date serial number in each cell, you can just format the cells to show the year.

If you just need the year added to the text string of each cell, you can do that easily. Assuming your values start in cell A1. In cell B1 type this: =A1&"/2015". Then copy that down to the other cells.

If you want to convert the strings to actual dates, in cell B1 type: =datevalue(A1). Copy that formula down.

Hoped it helped.

Jeff
 
Upvote 0

Forum statistics

Threads
1,214,927
Messages
6,122,309
Members
449,080
Latest member
jmsotelo

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