View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default {h}:mm to display x hours and x minutes

Try this:

In chunks so line wrap doesn't break at the needed spaces:

=INT(A1*24)&" hour"&IF(INT(A1*24)=1," ","s ")&MINUTE(A1)
&" minute"&IF(MINUTE(A1)=1,"","s")


--
Biff
Microsoft Excel MVP


"Josh" wrote in message
...
i want to make a cell display text and numbers. i want to take time from
one
cell, say A1 is 227:23 as [h]:mm and make it say in A2 227 hours 23
minutes.
how can i do this?