Splitting Date and Time

Cybertech

New Member
Joined
Apr 11, 2011
Messages
7
Office Version
  1. 365
Platform
  1. Windows
I am sorry for what I am sure is a simple question, but nothing I try seems to work. I have approximately 8000 rows in an excel table formatted as follows:

Date and Time

01/01/2017 0748
01/01/2017 0749
01/01/2017 0750
01/01/2017 0751
01/01/2017 0752

I need to split the date and time into two new columns in the following format:

Date
Time
01/01/2017 07:48
01/01/2017 07:49
01/01/2017 07:50
01/01/2017 07:51
01/01/2017 07:52

Any suggestions?

Thanks!
 
Last edited:

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Assuming first date/time in A2 try the following:

In B2

=LEFT(A2,10)+0

In C2

=REPLACE(RIGHT(A2,4),3,0,":")+0

format B2 and C2 in required date and time formats
 
Upvote 0

Forum statistics

Threads
1,215,339
Messages
6,124,370
Members
449,155
Latest member
ravioli44

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