Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
how to handle null values through script
Regards
smiley
you can use len(FIELD)=0 to identify null values and use it in the load sript or even the where clause
in the script, add below statement
SET NullAsValue ='<Null>';
hi
There are many ways to handle null values.
You can test if a value is a null with the isnull( expression )
you can generate a null value with null()
You can use nullcount() as you use count() to count null values (script or in a chart)
You can use NullasValue to define the the null values in a field should be considerer as regular values for selections.
for more details see link.
Hope it helps