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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Null as value

Hello Guys,

How can I put 0% for all rows in my table.

 

 

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;