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: 
Not applicable

How to read values from Mapping Load

How do I read values from Mapping Load

Labels (1)
2 Replies
prieper
Master II
Master II

From the manual

quote
Mapping tables will be stored temporarily in the memory and dropped automatically, after script execution.
unquote

HTH
Peter

pdumas
Partner - Contributor III
Partner - Contributor III

Hi,

I frequently use a Mapping Load to store into variables data already loaded in tables.

The sample script I use is

[ code ]

MapData:
mapping load
Key,FieldData
resident DataTable
where Key='What I Want To Store In a Variable';

Let vData=Applymap('MapData','FieldData');

[ /code ]

Good luck

If anybody has a simpler method, I am also interested

Pierre.