View Single Post
  #3   Report Post  
Roger Govier
 
Posts: n/a
Default

Hi

I think Bob meant
=B1-A1+(A1B1)*24
assuming Finish Time in B1 and Start time in A1

The formula posted will return 10:00 hours in both cases where A1=23:00
and B1=13:00, and A1=13:00, B1=23:00
as opposed to 14:00 hours and 10:00 hours respectively.

or you could use the less intuitive
=MOD((B1-A1),1)

Regards

Roger Govier



Bob Phillips wrote:

You cater for it

=IF(A1B1,A1-B1,B1-A1)