rowlesmr Is there a conditional operator for not equal to? I want say something like: If(L != 0, useme, usethis) I can't see one in the TechRef, and != and <> don't work. I can bodge it with If(Or(L > 0.1, L < -0.1), useme, usethis)