Vaya con Dios,
Chuck, CABGx3
format cell: hh:mm
1. Is the 1700 an Excel time formatted as hhmm, or is it merely the number
1700?
2. Do you want the result to be recognized by Excel as a Time, or just as a
number?
3. To change the format of 1700 so it "looks like" 17:00 (but the stored value
is still 1700) then select the cell(s) and
Format/Number/Custom Type: 00\:00
4. To change it to a value recognized as a Time by Excel, you will need a
formula (see below). Then Format/Number/Custom Type: hh:mm
Formula with 1700 in A1: =INT(A1/100)/24+MOD(A1,100)/1440
--ron
Is your time always 4 positions? ( i.e. no 745 for quarter to eight, but 0845)
If so, with the time in A1:
=TIME(INT(A1/100),MOD(A1,100),0)
Choose the appropriate format from the Format menu, or choose Format Custom, hh:mm
Post again in this thread if this doesn't answer your question
--
Kind regards,
Niek Otten
Microsoft MVP - Excel
"Suzanne" <Suz...@discussions.microsoft.com> wrote in message news:C6583809-16BB-42B3...@microsoft.com...
Gord Dibben MS Excel MVP
On Thu, 6 Dec 2007 14:43:02 -0800, Suzanne <Suz...@discussions.microsoft.com>
wrote: