Hi,
I have need of a computed column in a datawindow that should result a number Or null.
I understand that in Script I can use SetNull(SomeVariable) easily, but cannot find in Expression functions
that can do the same.
example: If( state_code ='NY' , 100, SetNull(0) )
or If( state_code ='NY' , 100, Null )
any function that can produce a Numreric Value or null result.
Thanks.