Extracting partial information from a cell

  • Thread starter Thread starter Jode
  • Start date Start date
J

Jode

I have a speadsheet and one of the cells has the date and time. I want to
know can you pull the time part of this cell and imput into another cell???
 
If you have a true Excel date/time, you can separate them with:
date: =int(a1)
time: =mod(a1,1)

Change a1 to your actual cell address.

If this doesn't work for you, then you don't have a date/time, you have
text. Show us examples of what you have, and how you want it "pulled apart".
Be sure to identify how you want the result stored (eg, date, time, text)

Regards,
Fred
 
Back
Top