I would like to replace the numeric field in cursor with space where the value is null.
I tried something like
REPLACE ALL fieldname WITH VAL('') FOR ISNULL(fieldname)
I tried several options but just cant get it to be space. I always endup getting 0.
REPLACE ALL fieldname WITH '' FOR ISNULL(fieldname) gives data type mismatch error. Which is obvious.
Is it possible to replace numeric fields with space. Or no value. Not even zero.
Thanks !
I tried something like
REPLACE ALL fieldname WITH VAL('') FOR ISNULL(fieldname)
I tried several options but just cant get it to be space. I always endup getting 0.
REPLACE ALL fieldname WITH '' FOR ISNULL(fieldname) gives data type mismatch error. Which is obvious.
Is it possible to replace numeric fields with space. Or no value. Not even zero.
Thanks !