Is it possible to do an if formula in which the condition applies the
true value if the value is another cell? Example =IF(a1<>"F",1,0). I
mean if <>"F" is in another cell and not in the formula.
Happy New Year to all
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguil...@austin.rr.com
"1234" <altachic...@gmail.com> wrote in message
news:e1365b76-6792-4752...@r5g2000yqb.googlegroups.com...
=IF(A1<>B1,1,0)
where B1 is the cell that might contain F.
If, on the other hand, you want the entire comparison "A1<>"F"" in
another cell, enter
A1="F" (no leading equals sign)
in some cell, say D2. Then in another cell, use
=EVAL(D2)
This will return the result of the comparison in D2.
Cordially,
Chip Pearson
Microsoft MVP 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com
[email on web site]