converting Days Hours & minutes into just minutes in excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

converting Days Hours & minutes into just minutes in excel, this is my data
set - 0:16:30 in Day hours and minutes, I need to change this to just minutes
wich would be 990 minutes, how can i do this please.
 
Format Custom as [mm]
If you want to calculate with it as number 990:

=A1*24*60

--
Kind regards,

Niek Otten

| converting Days Hours & minutes into just minutes in excel, this is my data
| set - 0:16:30 in Day hours and minutes, I need to change this to just minutes
| wich would be 990 minutes, how can i do this please.
|
 
If you have something that looks like 0:16:30 and you think it is 0 days, 16
hours and 30 minutes,
it's no, excel thinks it is 16 minutes and 30 seconds,

however just as long as you know that you can convert it, assume the value
is in
A1

=A1*86400

format as general


--

Regards,

Peo Sjoblom

http://nwexcelsolutions.com
 
Six said:
converting Days Hours & minutes into just minutes in excel, this is m
data
set - 0:16:30 in Day hours and minutes, I need to change this to jus
minutes
wich would be 990 minutes, how can i do this please.

If you're just concerned with what is displayed.....

If you input 0:16:30 in excel then this will be interpreted as 1
minutes 30 seconds.In this case to display as 990 custom format as

If you do indeed have a cell formatted as d:hh:mm which shows 0:16:3
then just reformat as [m] and it should show 99
 
Back
Top