Functions

  • Thread starter Thread starter SteveC
  • Start date Start date
S

SteveC

I want to return a true or false value based on say, B3<50
=false value, B3>49=true value , B3>99 = false value. I
have tried numerous IF functions to no avail, I can only
get two of the logical tests to work. I need to nest
another function but not sure which, Please help.
 
Hi
try
=IF(B3>99,FALSE,IF(B3>49,TRUE,FALSE))
or
IF(AND(B3>49,B3<=99),TRUE,FALSE)
 

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

Back
Top