Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to select null values?

I need to make selection of null values and check the data variation. So how should i do it in the script for the particular field?

2 Replies
vijay_iitkgp
Partner - Specialist
Partner - Specialist

Hi Priyanka,

You can use

If(IsNull(Field),'Null Value',Field) AS Field

nstefaniuk
Creator III
Creator III

Or

NullAsValue Field;

Set NullValue = 'Null Value';

// Make your final load here

Load

...

;

NullAsNull Field;

More performant than the If