i need to calculate hours and minutes between eks. "clock" 18:30 and 03:30
into hh:mm
it does not take into account that it's 9 hours not 14,5
excel 2003
=MOD(end-start,1)
or
=end-start+(start>end)

Signature
Regards,
Peo Sjoblom
>i need to calculate hours and minutes between eks. "clock" 18:30 and
>03:30
> into hh:mm
> it does not take into account that it's 9 hours not 14,5
>
> excel 2003
richardandre - 12 Nov 2007 22:17 GMT
thanks worked fine (=end-start+(start>end))
> =MOD(end-start,1)
>
> or
>
> =end-start+(start>end)