Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm sure the answers here, but I can't sort it out.
I have data entered as general number with no punctuation that needs to be converted to military time. How do I convert it without losing the time entered? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about posting *SEVERAL* representative samples and let us know what
results you expect. -- Biff Microsoft Excel MVP "ahdoj" wrote in message ... I'm sure the answers here, but I can't sort it out. I have data entered as general number with no punctuation that needs to be converted to military time. How do I convert it without losing the time entered? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I suppose you will have to run some calculations of those cells - therefor,
if cell A1 holds: 1300 then in cell B1 type: =1*(REPLACE(REPT(0,4-LEN(A1))&A1,3,0,":")) and custom format cell B1 as: hh:mm If you don't need to run any calculations - try custom format cell A1, as: ##\:## (without the need of B1) Micky "ahdoj" wrote: I'm sure the answers here, but I can't sort it out. I have data entered as general number with no punctuation that needs to be converted to military time. How do I convert it without losing the time entered? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you've got 1730 and you want 17:30, use =--TEXT(A2,"00\:00") and format
as time. -- David Biddulph "ahdoj" wrote in message ... I'm sure the answers here, but I can't sort it out. I have data entered as general number with no punctuation that needs to be converted to military time. How do I convert it without losing the time entered? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming you're entering hours and minutes (no seconds), convert with:
=time(a1/100,mod(a1,100),0) Regards, Fred "ahdoj" wrote in message ... I'm sure the answers here, but I can't sort it out. I have data entered as general number with no punctuation that needs to be converted to military time. How do I convert it without losing the time entered? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Time to Number Conversion | New Users to Excel | |||
Time conversion | Excel Discussion (Misc queries) | |||
Time Conversion | Excel Discussion (Misc queries) | |||
Time conversion | Excel Worksheet Functions | |||
time conversion | Excel Discussion (Misc queries) |