Convert a string into date - hour

Dan89

New Member
Joined
Apr 16, 2014
Messages
2
Hey guys, I need some help.

I have 2 separated cells with these STRINGS, indicating date and hours:

Apr-14-14 00:31:41
Apr-15-14 00:29:41

I would like to calculate, in a third cell, the difference between the 2 date/hours (in seconds).

How can I convert these 2 string cells into a date + hour format, so that I can compute the difference?

My version of Excel is 2013.

Thank you.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Okay, not to be thick-headed, but if you check the cells' formatting, what is it?
 
Upvote 0
ACK!!! Never mind that last idiot question, I just tried 'Apr-14-14 00:31:41' in a cell.

Are you looking for a VBA solution, or worksheet formula/function solution?

Mark
 
Upvote 0
Hey guys, I need some help.

I have 2 separated cells with these STRINGS, indicating date and hours:

Apr-14-14 00:31:41
Apr-15-14 00:29:41

I would like to calculate, in a third cell, the difference between the 2 date/hours (in seconds).

How can I convert these 2 string cells into a date + hour format, so that I can compute the difference?
Assuming those values are in A1 and A2, give this formula a try...

=SUBSTITUTE(SUBSTITUTE(A2,"-"," ",1),"-",", ")-SUBSTITUTE(SUBSTITUTE(A1,"-"," ",1),"-",", ")

You can the apply the time format that you want.
 
Upvote 0
Because they are not stored as dates they are strings. They also don't follow a standard date format so you can't use datevalue. I did mine the way it was to make sure that the year and day are picked up correctly regardless of location settings.
 
Upvote 0
But I assume that the OP is using a date setting where month precedes the day, as in the U.S. (?)

Regards
 
Upvote 0

Forum statistics

Threads
1,214,806
Messages
6,121,667
Members
449,045
Latest member
Marcus05

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