G Guest Apr 11, 2006 #1 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?
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 Ardus Petus Apr 11, 2006 #2 In A1: =TODAY() format dd/mm/yyyy in B1: =NOW()-TODAY() format hh:mm:ss HTH
A Aladin Akyurek Apr 11, 2006 #3 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.
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 Apr 11, 2006 #4 =INT(A2) and =MOD(A2,1) -- HTH Bob Phillips (remove nothere from email address if mailing direct)