> Format the cell as [h]:mm.
>
[quoted text clipped - 10 lines]
> > 1 hh:mm instead of 32 hh:mm. Am I doing something wrong? Many thanks.
> > John
Unfortunately, Excel does not support a format of [dd] the way it does [hh].
You will need to split the cell.
=int(celladdress) will give you just the days -- format it as general.
Format the other cell as hh:mm
Regards,
Fred.
> OssieMac,
> Very helpful, thanks. Now, if I wanted to display the number of days, how
[quoted text clipped - 19 lines]
>> > 1 hh:mm instead of 32 hh:mm. Am I doing something wrong? Many thanks.
>> > John
OssieMac - 29 Mar 2008 04:51 GMT
Fred's post gave me another idea to display as dd hh:mm:ss
Assuming the the value is in cell B2 then the following formula will display
the result in the desired format. However, you will not be able to use it in
calculations; only as your displayed result because it is actually text.
=INT(B2) & " " & TEXT(B2,"hh:mm:ss")
You can perform all your calculations as you have been doing them and
perhaps hide the column or row and use the column or row with the above
formula for the display of the results in the desired format.

Signature
Regards,
OssieMac
> Unfortunately, Excel does not support a format of [dd] the way it does [hh].
> You will need to split the cell.
[quoted text clipped - 28 lines]
> >> > 1 hh:mm instead of 32 hh:mm. Am I doing something wrong? Many thanks.
> >> > John
John MacAllister - 30 Mar 2008 01:31 GMT
Thanks! I'll try it.
John
> Fred's post gave me another idea to display as dd hh:mm:ss
>
[quoted text clipped - 40 lines]
> > >> > 1 hh:mm instead of 32 hh:mm. Am I doing something wrong? Many thanks.
> > >> > John
John MacAllister - 30 Mar 2008 01:31 GMT
Thanks, Fred. I appreciate the help.
John
> Unfortunately, Excel does not support a format of [dd] the way it does [hh].
> You will need to split the cell.
[quoted text clipped - 28 lines]
> >> > 1 hh:mm instead of 32 hh:mm. Am I doing something wrong? Many thanks.
> >> > John