Hi, Is it possible to make this work: if X > 3 or < 10 then ... of course it would be shorthand for: if (X>3) or (X<10) then.... I suppose also it would be possible then to do: if X > 3 or < -1 or = 4000 or = 1000000 then... Andrew