Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I received a file with date/time stamp information in a field. When I pull
this information into Access, the queries that I have written won't work because the date is attached to the time. How can I convert that date/time value to time only value in Excel? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If the date were in cell C2:
=C2-INT(C2) would give you just the time element You could Copy and PasteSpecial | Values over the original, if required Regards Trevor "Gretchen" wrote in message ... I received a file with date/time stamp information in a field. When I pull this information into Access, the queries that I have written won't work because the date is attached to the time. How can I convert that date/time value to time only value in Excel? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Or
=MOD(C2,1) -- Regards, Peo Sjoblom "Trevor Shuttleworth" wrote in message ... If the date were in cell C2: =C2-INT(C2) would give you just the time element You could Copy and PasteSpecial | Values over the original, if required Regards Trevor "Gretchen" wrote in message ... I received a file with date/time stamp information in a field. When I pull this information into Access, the queries that I have written won't work because the date is attached to the time. How can I convert that date/time value to time only value in Excel? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Awesome! Thanks so much.
"Trevor Shuttleworth" wrote: If the date were in cell C2: =C2-INT(C2) would give you just the time element You could Copy and PasteSpecial | Values over the original, if required Regards Trevor "Gretchen" wrote in message ... I received a file with date/time stamp information in a field. When I pull this information into Access, the queries that I have written won't work because the date is attached to the time. How can I convert that date/time value to time only value in Excel? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I assume that when you pull it into Access you may want a text
representation, not Excel's time representation, so for 6pm you want 18:00, not 0.75? In that case =TEXT(A1,"hh:mm") -- David Biddulph "Gretchen" wrote in message ... I received a file with date/time stamp information in a field. When I pull this information into Access, the queries that I have written won't work because the date is attached to the time. How can I convert that date/time value to time only value in Excel? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert Text Time to Excel Time | Excel Discussion (Misc queries) | |||
How do i convert unix time to Julian time in excel? | Excel Discussion (Misc queries) | |||
Convert date and time | Excel Discussion (Misc queries) | |||
In Excel, I want to convert Eastern time to pacific time | Excel Discussion (Misc queries) | |||
Calculating days & time left from start date/time to end date/time | Excel Worksheet Functions |