PC Review


Reply
Thread Tools Rate Thread

Converting hours over 24 into decimal format

 
 
=?Utf-8?B?QXJ5?=
Guest
Posts: n/a
 
      4th Jul 2007
How would I convert hours such as 128:24:12 to 128.403?

In previous discussions, I saw someone suggest formatting the cell as
[hh]:mm, but I have no idea what this means nor how to do it.
--
-Ary
 
Reply With Quote
 
 
 
 
Pete_UK
Guest
Posts: n/a
 
      4th Jul 2007
If you want them in decimal format then multiply by 24:

=A1*24

and format the cell as number with appropriate decimal places.

If you want to see them in time format, then click Format | Cells |
Custom and enter [hh]:mm:ss in the panel then click OK.

Hope this helps.

Pete

On Jul 4, 11:42 am, Ary <A...@discussions.microsoft.com> wrote:
> How would I convert hours such as 128:24:12 to 128.403?
>
> In previous discussions, I saw someone suggest formatting the cell as
> [hh]:mm, but I have no idea what this means nor how to do it.
> --
> -Ary



 
Reply With Quote
 
=?Utf-8?B?TWlrZSBI?=
Guest
Posts: n/a
 
      4th Jul 2007
Multiply time * 24

select your cell and then format:cells:custom and enter a format of [hh]:mm:ss


Enter your time in that cell 18:22:13 (say cell A1)

In b1 typr =A1*24

Change thje format to general and your done.

Mike


"Ary" wrote:

> How would I convert hours such as 128:24:12 to 128.403?
>
> In previous discussions, I saw someone suggest formatting the cell as
> [hh]:mm, but I have no idea what this means nor how to do it.
> --
> -Ary

 
Reply With Quote
 
=?Utf-8?B?VG9wcGVycw==?=
Guest
Posts: n/a
 
      4th Jul 2007
Multiply by 24 and format cell as General.

=A1*24

a1=128:24:12 (formatted as [h]:mm:ss)

Format of [h]:mm:ss allows hours of > 24 to be displayed. 128:24:12 with
hh:mm:ss would be display as 8:24:12 [removing 120 (5*24 hours)].

"Ary" wrote:

> How would I convert hours such as 128:24:12 to 128.403?
>
> In previous discussions, I saw someone suggest formatting the cell as
> [hh]:mm, but I have no idea what this means nor how to do it.
> --
> -Ary

 
Reply With Quote
 
=?Utf-8?B?QXJ5?=
Guest
Posts: n/a
 
      4th Jul 2007
I don't think I understand. When I do this, I get a completely different time:

A1 A2 =A1*24
126:47:59 19:11:36

I need it to read 126:47:59 and give me 126.7997
--
-Ary


"Pete_UK" wrote:

> If you want them in decimal format then multiply by 24:
>
> =A1*24
>
> and format the cell as number with appropriate decimal places.
>
> If you want to see them in time format, then click Format | Cells |
> Custom and enter [hh]:mm:ss in the panel then click OK.
>
> Hope this helps.
>
> Pete
>
> On Jul 4, 11:42 am, Ary <A...@discussions.microsoft.com> wrote:
> > How would I convert hours such as 128:24:12 to 128.403?
> >
> > In previous discussions, I saw someone suggest formatting the cell as
> > [hh]:mm, but I have no idea what this means nor how to do it.
> > --
> > -Ary

>
>
>

 
Reply With Quote
 
=?Utf-8?B?VG9wcGVycw==?=
Guest
Posts: n/a
 
      4th Jul 2007
format A2 as GENERAL

"Ary" wrote:

> I don't think I understand. When I do this, I get a completely different time:
>
> A1 A2 =A1*24
> 126:47:59 19:11:36
>
> I need it to read 126:47:59 and give me 126.7997
> --
> -Ary
>
>
> "Pete_UK" wrote:
>
> > If you want them in decimal format then multiply by 24:
> >
> > =A1*24
> >
> > and format the cell as number with appropriate decimal places.
> >
> > If you want to see them in time format, then click Format | Cells |
> > Custom and enter [hh]:mm:ss in the panel then click OK.
> >
> > Hope this helps.
> >
> > Pete
> >
> > On Jul 4, 11:42 am, Ary <A...@discussions.microsoft.com> wrote:
> > > How would I convert hours such as 128:24:12 to 128.403?
> > >
> > > In previous discussions, I saw someone suggest formatting the cell as
> > > [hh]:mm, but I have no idea what this means nor how to do it.
> > > --
> > > -Ary

> >
> >
> >

 
Reply With Quote
 
=?Utf-8?B?VG9wcGVycw==?=
Guest
Posts: n/a
 
      4th Jul 2007
or number per Pete's reply.

"Toppers" wrote:

> format A2 as GENERAL
>
> "Ary" wrote:
>
> > I don't think I understand. When I do this, I get a completely different time:
> >
> > A1 A2 =A1*24
> > 126:47:59 19:11:36
> >
> > I need it to read 126:47:59 and give me 126.7997
> > --
> > -Ary
> >
> >
> > "Pete_UK" wrote:
> >
> > > If you want them in decimal format then multiply by 24:
> > >
> > > =A1*24
> > >
> > > and format the cell as number with appropriate decimal places.
> > >
> > > If you want to see them in time format, then click Format | Cells |
> > > Custom and enter [hh]:mm:ss in the panel then click OK.
> > >
> > > Hope this helps.
> > >
> > > Pete
> > >
> > > On Jul 4, 11:42 am, Ary <A...@discussions.microsoft.com> wrote:
> > > > How would I convert hours such as 128:24:12 to 128.403?
> > > >
> > > > In previous discussions, I saw someone suggest formatting the cell as
> > > > [hh]:mm, but I have no idea what this means nor how to do it.
> > > > --
> > > > -Ary
> > >
> > >
> > >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Converting Hours to Decimal =?Utf-8?B?SGVsZW4=?= Microsoft Excel Misc 7 24th May 2010 05:37 PM
Converting Hours in decimal format to Hours and minutes (short time) Gina Microsoft Access 2 26th Sep 2007 05:42 PM
Converting Decimal to hours. Steved Microsoft Excel Worksheet Functions 10 10th Jun 2004 10:29 PM
Converting Decimal to hours. Steved Microsoft Excel Worksheet Functions 2 10th Jun 2004 08:54 PM
Converting decimal hours into hh:mm Lana Microsoft Excel Worksheet Functions 9 24th May 2004 10:45 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:49 AM.