Re: convert a number to time by IC
IC
Fri Jan 14 10:12:59 CST 2005
Judging by your list below, the numbers are stored as text (otherwise the
last item would read 150).
You can't easily format the existing cells but you can extract the
information in time format to an adjacent cell.
Try this assuming your number is in cell A3:
=TIMEVALUE(LEFT(A3,2)&":"&MID(A3,3,2)&":"&RIGHT(A3,2))
Fpormat the cell as Time.
Ian
"rbus" <pleaseno@email.atall> wrote in message
news:41e7d9b1$0$12292$636a15ce@news.free.fr...
> Hello everybody !!
>
> Do you any idea for my problem ?
> I've a column with times : HHMMSS
> 145204 == 2PM 52 min 04 sec
> 130298
> 000159
> How to easily format this column as time format : 14:52:04 for example ?
> Thank you for your help !!
> rb
>