In FMP 6, I used to be able to do (all number fields)
(If(Field>"1","1","0")
In FMP 9, the expression evaluates to "1" if Field is indeed greater than 1, but if Field is empty, I do not get a "0", I get a null value.
I tried the inverse
(If(Field="","0","1") I get the same result.
What's up?
Peter