Thread: Adding time
View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Chip Pearson
 
Posts: n/a
Default Adding time

=time*24*rate


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

"Ken Davie" wrote in message
u...
That formula works great, but now what function do i use to
multiply the
total time by an hourly rate?

Ken.....

"Sandy Mann" wrote in message
...
Bruno,

Without meaning to be critical, your formula *appears* to
return the

correct
answer when you have, for example, 23:30 in A1 and 01:30 in A1
you get

02:00

However, if you format the cell as General you will see that
the actual
value held in the cell is 23.083333333 which is 2 am on
January 23 1900.
The reason is the use of 24 in your formula. Excel is taking
it as 24

days
*not* 24 hours. The answer is to replace the 24 with 1 (day)
as in:

=(A2<A1) * (1- A1 + A2) + (A2 = A1) * (A2 - A1)

Shorter ways of doing the same thing:

=A2-A1+(A2<A1)

or

=MOD(A2-A1,1)

Neither of which are my original formulas
--
HTH

Sandy
In Perth, the ancient capital of Scotland


with @tiscali.co.uk


"Bruno Campanini" wrote in
message
...
"Ken Davie" wrote in message
u...
If i have a start time of 5:00am and a finishing time of
4:25pm, what
function do i use to get the total time of 11 hours & 25
minutes?

A1 = Start Time
A2 = End Time

=(A2<A1) * (24 - A1 + A2) + (A2 = A1) * (A2 - A1)

Bruno