Subtract hours from a time and get the correct time

C

casey

I am trying to subtract 7 hrs from different times entered and get the
correct time. It works fine until it goes back to the prior day. How do I
get it to display correctly? I am using Excel in Office 2007. I entered
=1:18-7:00 and have a cell format of hh:mm AM/PM
 
S

Sandy Mann

Assuming that you have 1:18 in A1 and 7:00 in B1 then try:

=MOD(A1-B1,1)

for all your subtractions.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

[email protected]
Replace @mailinator.com with @tiscali.co.uk
 
Top