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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
1 Reply
BrunPierre
Partner - Master II
Partner - Master II

Hi @Anonymous 

This expression changes all of a field's NULL values to "0.00%.".

Coalesce(Field,'0.00%')

or

Perhaps with a NullAsValue statement as below.

NullAsValue Field;

Set NullValue = '0.00%';

LOAD Field FROM SourceTable;