Suppose you have a date timestamp value in cell A1
A1 = 06/14/15 10:15 PM
And you want to extract date and time out of this.
To extract date, use following formula and format the result cell as date
= INT(A1)
To extract time, use following formula and format the result cell as time
= MOD(A1,1)