How do I do this: =IF(cell A1 does not equal "apple"),... Thank you.
L Lars-Åke Aspelin Dec 12, 2008 #3 How do I do this: =IF(cell A1 does not equal "apple"),... Thank you. Click to expand... 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
How do I do this: =IF(cell A1 does not equal "apple"),... Thank you. Click to expand... 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
S Sheeloo Dec 13, 2008 #4 Enter this anywhere other than A1 =IF(A1<>"apple","A1 is not equal to apple","A1 contains apple")