Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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