If formula and time

G

Guest

I want to to use a formula to return "true" in cell AM if cell AK is <=00:30
and false if it is >00:30

I am using the formula =if(AM<=0.020833333,TRUE,FALSE)

This is returning FALSE for any time that is 00:30 or greater. I tried
putting 00:30 in the formula but it wont accept that.

Thanks for any help.
 
R

Roger Govier

Hi Denise

Try
=IF(AM1<=TIME(0,30,0),TRUE,FALSE)
or even
=AM1<=TIME(0,30,0)
 
G

Guest

try:

=IF(AK1<=TIME(0,30,0),"True","False")

I assume AK is the column so cell address should be AK1, AK2 etc.
 
P

Pete_UK

Do you mean that if you had 5:29 in the cell you would like this to be
TRUE and if it was 5:31 in the cell you would want this to be FALSE?

Pete
 

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