convert decimal number to time : convert 1,59 (minutes, dec) to m

  • Thread starter Thread starter Guest
  • Start date Start date
Divide it by 24 if it is hours, or by 1440 if it is minutes

--
HTH

Bob Phillips

agenda9533 said:
How to convert decimal number to time : convert 1,59 (minutes, dec) to
mm:ss
 
Problem is - I know how to calculate this mannualy. But I need a function
that converts a decimal number of minutes ( for example , 1.59 ) to a time
format mm:ss (1:48)

Thank you for all your answers!
 
Now I got it! :-))
Thank you!

JE McGimpsey said:
One way:

A1: 1,59
A2: =A1/1440

format A2 as "[m]:ss"


agenda9533 said:
Problem is - I know how to calculate this mannualy. But I need a function
that converts a decimal number of minutes ( for example , 1.59 ) to a time
format mm:ss (1:48)
 
which is what I said

--
HTH

Bob Phillips

agenda9533 said:
Now I got it! :-))
Thank you!

JE McGimpsey said:
One way:

A1: 1,59
A2: =A1/1440

format A2 as "[m]:ss"


agenda9533 said:
Problem is - I know how to calculate this mannualy. But I need a function
that converts a decimal number of minutes ( for example , 1.59 ) to a time
format mm:ss (1:48)
 
He probably got a decimal number and didn't know what to do with it.
Just dividing doesn't format it as time.
 
If he knew how to calculate it manually, it would have helped if he had
asked how he could put into a cell formula, rather than how to convert it.

Bob
 

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

Back
Top