Separating Date and Time

J

JWorgull

I am working with data received from my financial institution. The date and
time field returns the following data: 20091110120000[0:GMT]. The time is not
important, but I am looking to separate the date into a mm/dd/yyyy format.
Thanks for any help you can provide.
 
H

Huber57

Put the text string in A1.
Place this in B1
=DATE(LEFT(A1,4),MID(A1,5,2),MID(A1,7,2))

Format column B as a date in the format you would like.

20091110120000[0:GMT]. returns 11/10/2009 (or Nov. 10, 2009)

HTH
 
E

Eduardo

Hi,
use

=DATE(LEFT(A1,4),MID(A1,5,2),MID(A1,7,2))

and then custom format the cell with

m/dd/yyyy
 
J

JWorgull

Thanks. This helps me a great deal!

Huber57 said:
Put the text string in A1.
Place this in B1
=DATE(LEFT(A1,4),MID(A1,5,2),MID(A1,7,2))

Format column B as a date in the format you would like.

20091110120000[0:GMT]. returns 11/10/2009 (or Nov. 10, 2009)

HTH

JWorgull said:
I am working with data received from my financial institution. The date and
time field returns the following data: 20091110120000[0:GMT]. The time is not
important, but I am looking to separate the date into a mm/dd/yyyy format.
Thanks for any help you can provide.
 
J

JWorgull

Thanks. This helps a great deal!

Eduardo said:
Hi,
use

=DATE(LEFT(A1,4),MID(A1,5,2),MID(A1,7,2))

and then custom format the cell with

m/dd/yyyy

JWorgull said:
I am working with data received from my financial institution. The date and
time field returns the following data: 20091110120000[0:GMT]. The time is not
important, but I am looking to separate the date into a mm/dd/yyyy format.
Thanks for any help you can provide.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top