IF cell does not equal

  • Thread starter Thread starter David P.
  • Start date Start date
D

David P.

How do I do this:

=IF(cell A1 does not equal "apple"),...

Thank you.
 
How do I do this:

=IF(cell A1 does not equal "apple"),...

Thank you.

Try this

=IF(A1<>"apple", something, somethingelse)

replace something and somethingelse with the the results you expect
for the different cases.

Hope this helps / Lars-Åke
 
Enter this anywhere other than A1
=IF(A1<>"apple","A1 is not equal to apple","A1 contains apple")
 

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