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: 
GOKULAKANNAN
Creator II
Creator II

Mapping field to a table

Hi,

 

I have a table with 2 fields

T1:

Load 

Id,country from country.xlsx

 

I need to map this ID with another table which is having 2 fields 

T2: 

Load 

id1,id2

From id.xlsx

Now the id1 and id2 in T2 will have the same value as Id in T1, i need to match this id1 and id2 with Id and fetch the country matching with id1 And id2 and retrive value as country 1 and country 2.

 

 

 

1 Solution

Accepted Solutions
Or
MVP
MVP

T1:

Mapping Load Id, country from country.xlsx;

T2:

Load id1, id2, ApplyMap('T1',id1) as Country1, ApplyMap('T1',id2) as Country 2;

Should work here, if I understood you correctly

View solution in original post

1 Reply
Or
MVP
MVP

T1:

Mapping Load Id, country from country.xlsx;

T2:

Load id1, id2, ApplyMap('T1',id1) as Country1, ApplyMap('T1',id2) as Country 2;

Should work here, if I understood you correctly