Turn a string date into Date and Time values

mvrht

New Member
Joined
Dec 9, 2017
Messages
18
I am looking to extract the date into DD-MM-YYYY format and append the start date

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>May 2, 20181:00 PM - 1:45 PM PT
to become
02/05/2018 13:00:00

I have split the string with the following
=REGEXREPLACE(C2,"2018","2018 ")

But struggling with the conversion part
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
I am looking to extract the date into DD-MM-YYYY format and append the start date

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>May 2, 20181:00 PM - 1:45 PM PT
to become
02/05/2018 13:00:00

Some questions for clarification...

1) May was a bad month to use for your example as we cannot tell whether your months are spelled out in full or abbreviated to the first 3 letters. Which is it?

2) Is there really no space or other character between the last digit of the year and the first digit of the time?

3) Why do you want the time to be 13:00:00 when the actual time would be 13:45:00... is the time supposed to be rounded down to the nearest hour?

4) Is May 2, 2018 a proper representation for a date in your locale?
 
Last edited:
Upvote 0
1) August etc. The full month
2) No space, that is how it comes in via ImportXML
3) I need the start time, hence the first part of the time block. (It's a webinar list)
4) Not sure what you mean, but another date exmaple is April 26, 20181:00 PM - 2:00 PM PT

Thanks
 
Upvote 0
Hi,

May be this will help:


Excel 2010
ABC
1May 2, 20181:00 PM - 1:45 PM PT02/05/2018 13:00:00
2
3C1 formatted as dd/mm/yyyy hh:mm:ss
Sheet31
Cell Formulas
RangeFormula
C1=VALUE(LEFT(SUBSTITUTE(SUBSTITUTE(A1,MID(A1,FIND(",",A1)+2,4),MID(A1,FIND(",",A1)+2,4)&" "),"-",REPT(" ",100)),100))
 
Upvote 0
Does this formula work for you...

=0+REPLACE(LEFT(A1,FIND("M",A1,FIND(":",A1))),FIND(",",A1)+6,0," ")

Custom Format the cell you put it in as dd/mm/yyyy hh:mm:ss
 
Upvote 0
Hi,

May be this will help:

Excel 2010
ABC
1May 2, 20181:00 PM - 1:45 PM PT02/05/2018 13:00:00
2
3C1 formatted as dd/mm/yyyy hh:mm:ss

<colgroup><col style="width: 25pxpx"><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet31

Worksheet Formulas
CellFormula
C1=VALUE(LEFT(SUBSTITUTE(SUBSTITUTE(A1,MID(A1,FIND(",",A1)+2,4),MID(A1,FIND(",",A1)+2,4)&" "),"-",REPT(" ",100)),100))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

This is good but outputs the date only in Google Sheets

This is the an example of the required return of a certain date
<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
27/04/2018 14:46:58

 
Upvote 0
Does this formula work for you...

=0+REPLACE(LEFT(A1,FIND("M",A1,FIND(":",A1))),FIND(",",A1)+6,0," ")

Custom Format the cell you put it in as dd/mm/yyyy hh:mm:ss

Again, this is good. But only returning the date in Google Sheets and not start time. Such as
02/05/2018 13:00:00
 
Upvote 0
Again, this is good. But only returning the date in Google Sheets and not start time. Such as
02/05/2018 13:00:00
Google Sheets? This is an Excel forum and, in Excel, the formula I posted gives the date and time that you want when you format the cell you put that formula in using the following format pattern...

dd/mm/yyyy hh:mm:ss
 
Upvote 0
Google Sheets? This is an Excel forum and, in Excel, the formula I posted gives the date and time that you want when you format the cell you put that formula in using the following format pattern...

dd/mm/yyyy hh:mm:ss

My mistake, it comes out perfect from both yourself and jtakw- I has the cell format set incorrectly. I always found the formulas were pretty much compatible across the board Excel & Sheets etc and it works perfect in Sheets too. Thanks for solving
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,699
Members
449,048
Latest member
81jamesacct

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