Displaying hours and minutes

J

John

How do I get excel to display results in hours and minutes, not as
time but as duration?

For example in cell C2 I have 175 for 175 minutes. In cell D2 I have
C2/60 to give 2.9166667 as the result in hours as a decimal.

How do I get it to display that decimal in duration of time e.g. 2
hours 55 minutes?

Cheers

John
 
G

Guest

John --

If your data cell is A1, then here's a formula that works:

=INT(A1) & " hours and " & ROUND((MOD(A1,1)*60),0) & " minutes."

HTH.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top