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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Mapping load or lookup tables

Hi Everyone,


I have a very large data set (400 variables).  A lot of them are coded using numerical codes that relate to a string (not in the table).  I have a data dictionary that tells me what these values relate to.  I could create a lot of little tables that link to my master table for each coded variable, which is how I would normally do it for a small number of variables.  Is this when I should be applying a mapping load?  Would I require a map for every variable?

Thanks

Gareth

1 Reply
brenner_martina
Partner - Specialist II
Partner - Specialist II

Hi,

yes, working with mapping tables means for every "variable" an own Mapping Table and Applymap in your facts table.

But you can load the "Variables" with their text also by joining them:

Factstable:

Load Field1,

       Variable1,

        ...

From ...;

Left Join (Factstable)

Load Variable1,

        Text1

From VarTable1;

...

Greetings from Munich