how compear two or more values into the same function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i need check two or more "values"getting into the same cell but into the same
function someting like this example
IF (R20=30 or 20 or 10),"true", "false"
 
One option is =IF(OR(R20=30,R20=20,R20=10),"true","false")
Note that if you want the true and false to be the boolean values, rather
than text, you'll need to leave out the quote marks.
 

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