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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
In A1: =TODAY()
format dd/mm/yyyy

in B1:
=NOW()-TODAY()
format hh:mm:ss

HTH
 
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.
 
=INT(A2)

and

=MOD(A2,1)

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 

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

Back
Top