Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
1 Reply
BrunPierre
Partner - Master
Partner - Master

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;