If Function

B

Bushy

I keep getting the wrong result when I use =IF(G20<=+-H20,"OK","PROBLEM"). I
know the result should be "Problem" due to G20 being less than H20
 
D

Dave Peterson

What's in G20 and what's in H20? And what should be returned with those two
values?

Maybe:

=IF(G20<=-H20,"OK","PROBLEM")
or
=IF(G20<=-abs(H20),"OK","PROBLEM")
or
=IF(G20<=H20,"OK","PROBLEM")
 

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