New date based on one date field minus minutes in another field

J

jdtobias

I have a worksheet that has 1 field with the full date, e.g.
12/25/2007 09:30 (field A)
and another field that has minutes, e.g. 15. (field B)

I want a formula that can tell me the new date/time if I take field A
and deduct field B.

thanks!
 
B

bpeltzer

Divide the minutes by 1440 (the number of minutes in a day) and subtract. If
the values are in A1 and B1, then =a1-b1/1440.
 
Top