How to subtract 7 min from 08:55 AM

G

Guest

I have a problem that I cannot figure out.
How to subtract a fraction of time from a Start time:
A1=08:50 AM , A2 needs to test A1 for less than or greater than 7 minutes of
09:00 AM.

Thanks
 
G

Guest

Rick,

If I understand you correctly, you need this in cell A2:

= If(((9/24)-A1)<(7/1440),"Less than 7 minutes","Not less than 7
minutes")
 
B

Bob Phillips

=AND(A1>=--"08:53:00",A1<=--"09:07:00")

or perhaps if the time is in A1 and the check time (9:00) is in B1 then

=ABS(B1-A1)<TIME(,7,0)

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top