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

map 2 different field from 2 different data source

hi every one,

i have one field like id in one data source:

id is : 2,3,4,5

and similar that file named code in other data source,

code is : 10243,10244,10370,10440

i want map this two field in one field named code.

how can i do this ?

regards

4 Replies
Anonymous
Not applicable
Author

Hi

Rename fields with Same name .

Not applicable
Author

thanks

but it dosn't work

i explain more :

id and code , both of them refer to student code in different data source, id in finance data source and code in HR data source,

id=2 is student with code =10243

i want create one field , then when i choose new field , it's refer to both of them

Not applicable
Author

HI Hamide

pls Check this sample app.

Capture.PNG

maxgro
MVP
MVP

you need a mapping (decod) from

- id to newfield (Mapid)

- code to newfield (Mapcode)

in Qlik define the 2 mapping table

Mapid:

Mapping load id, newfield from ....;

Mapcode:

Mapping load code, newfield from .....;

then load the table from finance data source and hr data source, they will be associated by Newfield

Finance:.

load

     id,

     *,

     ApplyMap('Mapid', id) as Newfield

from financedatasource;

HR:

load

     code,

     *,

     ApplyMap('Mapcode', code) as Newfield

from hhrdatasource;