Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How do I convert hours, minutes, and seconds into decimal format?

7 views
Skip to first unread message

Wannabe@discussions.microsoft.com Programmer Wannabe

unread,
May 12, 2007, 9:20:01 PM5/12/07
to
In cell A1 I have the day, month, year, hour, minute, and second a particular
transaction took place. In cell A2 I have the day, month, year, hour, minute,
and second the next transaction takes place. The Start and End dates and
times are used to determine the total number of hours, minutes and seconds
for one transaction. I have the total number of hours, minutes, and seconds
for a given transaction in column A3. If the total time in column A3 is
greater than 12:00:00, I want to return the value of 1 Business Day in column
A4. If the total is less than 12:00:00 I want to return the total hours,
minutes, and seconds in decimal format in column A4. Is this scientifically
possible?

Fred Smith

unread,
May 12, 2007, 9:50:06 PM5/12/07
to
Yes, it's possible. It depends what you mean by "hours, minutes, and seconds in
decimal format". Do you want decimal hours, minutes, seconds, or something else?

Time is stored in Excel as a fraction of a day, so 12:00:00 is 0.5 days. If you
multiply a time by 24, you will get decimal hours. So, the following should
work:

=if(a3>0.5,1,a3*24)

Format as number, or general.

--
Regards,
Fred


"Programmer Wannabe" <Programmer Wan...@discussions.microsoft.com> wrote in
message news:AC915ABB-109D-4E53...@microsoft.com...

T. Valko

unread,
May 12, 2007, 10:01:39 PM5/12/07
to
Try this in A4:

=IF(ISNUMBER(A3),IF(A3>0.5,"1 Business Day",A3*24),"")

Biff

"Programmer Wannabe" <Programmer Wan...@discussions.microsoft.com> wrote in
message news:AC915ABB-109D-4E53...@microsoft.com...

0 new messages