Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

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.