time from minutes to decimals

B

Bob Phillips

=A1*24

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
J

JE McGimpsey

XL times are representable by fractional days, so multiply the time by
the number of minutes in a day:

A1: 0:03:30
A2: =A1*24*60 ===> 3.5

when formatted as General or Number. A bit more efficiently:

A2: =A1*1440
 
Top