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: 
vkish16161
Creator III
Creator III

Can anyone please explain what this code does?

A:
load * inline [
A,B
Dummy
East,1];

 

EmptyRowsMapper:
MAPPING
LOAD
null() AS From,
'' AS To
AutoGenerate 1;

MAP * Using EmptyRowsMapper;

 

Can anyone please explain what this code does?

2 Replies
Anil_Babu_Samineni
MVP
MVP

Just to replace duplicate null values to real null values to show '-' instead 'String'
Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
marcus_sommer
MVP
MVP

Here it's well explained: qlikviewcookbook - filling-default-values-using-mapping.

- Marcus