How to check for null value
I want to do something like this in Fast Script:
IF <frxdata."MyValue"> is not null then
... do something ..
END
How can I do this? Thanks for any help.
IF <frxdata."MyValue"> is not null then
... do something ..
END
How can I do this? Thanks for any help.
Comments
when convertnulls is true default
the other option is to check for empty string or 0 for numeric fields.
Sorry Gordon, but that is not an (inteligent) option in any language or script in the world!
Anyway I set convert nulls to false in the engine and the code (Pascal)
if (<DataSetName."FieldNambe"> = Null) then
begin
end;
doesn't work, it doesn't detect the null values
Any suggestion will be wellcome