Leave what value as it is? The value where the IF()
function resides
She might mean:
If(A1=A3, A4, "")
That would be a "null false value" I suppose.
Hello there, If I understand you correctly, then it should be fairly simple to solve.
Suppose A1=23. Assume if true then its "good", if false then leave as 23.
=IF(A1=23,"good",A1)
Hope it works
Thanks for the suggestion, unfortunately it generates a 'circlic reference' (the formula in A1 refers back to itself), as do all the workarounds I have tried. The suggestion from Steve Riedmueller (the false value = "") will clear the cell...to hopefully clarify my problem, thuis is what I want to do...
=IF(CellX=CellY,set a new value,leave the previous value as it is)
...thanks for any suggestions.