Adding string after the dates in a column

srizki

Well-known Member
Joined
Jan 14, 2003
Messages
1,860
Office Version
  1. 365
Platform
  1. Windows
Hi all,

I copy dates from another sheet and paste in column, K and then format as 30-Sep-17. I need to add [.C01709503.BIL] . to the date,. without brackets. The addition will always be the same all the way.
Or in anther way, I am combining two columns, date and AFE (C01709503) adding .BIL at the end. at the same time I need to format date as dd-mm-yy.
So the final will become
[TABLE="width: 163"]
<tbody>[TR]
[TD]31-OCT-17.C01709503.BIL
[/TD]
[/TR]
[TR]
[TD]31-DEC-17.C01709503.BIL
[/TD]
[/TR]
[TR]
[TD]31-SEP-17.C01709503.BIL
[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Is there a faster way of adding the string [.C01709503.BIL ] after the dates.
Regards,
 
Last edited:

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
If your date was in cell A1, and your AFE in cell B1, then this formula should do what you want:
Code:
=TEXT(A1,"dd-mm-yy") & "." & B1 & ".BIL"
 
Upvote 0

Forum statistics

Threads
1,223,907
Messages
6,175,301
Members
452,633
Latest member
DougMo

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