How do I get XL to report the value of a cell if a (text) value in another
cell is NOT true?
Mike - 07 Mar 2007 09:21 GMT
In any cell will check if A1 is false and if true return the value of A2 or
unspecified if false.
=IF(A1=FALSE,A2,"Unspecified")
Mike
> How do I get XL to report the value of a cell if a (text) value in another
> cell is NOT true?
Joel - 07 Mar 2007 09:25 GMT
To compare text (not boolean true or false) then you need to use strcomp().
> How do I get XL to report the value of a cell if a (text) value in another
> cell is NOT true?