Date format conversion

jen0dorf

New Member
Joined
Oct 29, 2015
Messages
21
Hi


Been given a spreadsheet where a column h is designated date o fburial and column I is designated year of Burial

Cell i2 shows jan-10 the formulae bar shows 01/01/2017 is formatted Custom mmm-dd

J2 is formatted General and has a value of 1862


I need to change it to show 10-jan-1862 or 10-01-1862 and be formatted as text.

Normally I'd convert the date and month to text format using
Code:
 =TEXT(I2,"dd-mmm")
(but any combination of this doesn't work.) and then merge the two cells

I then thought of duplicating the column and in one removing three characters from the left and in the other 4 characters from the right. I would then combine the colums to get thr format I need. But that does not work.

Would appreciate any ideas

thanks Ian
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Your date functions aren't working because Excel spreadsheets don't support dates before 1900.
However, if you just need to return it as a text string, then this should do it.

=TEXT(I2,"dd-mmm-")&J2
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,939
Members
449,094
Latest member
teemeren

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