Split the date & time in one cell to be 2 colums.

A

Aom

I want to split the date & time in one cell to be 2 colums; Date and another
colum is Time. i.e. 4/11/2006 14.30
How should I do?
 
A

Aladin Akyurek

If the entry is 4/11/2006 14:30 where time is 14:30 (not 14.30)...

B2:

=INT(A2)

C2:

=A2-B2

Format B2 as date and C2 as time.
 
B

Bob Phillips

=INT(A2)

and

=MOD(A2,1)

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
Top