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: 
trishita
Creator III
Creator III

How to do mapping load of two common datafield between 2 different table

I need to map FUELTYPE of general information with FUELTYPE of Summary table because they both contain the same field.How can I do it

3 Replies
YoussefBelloum
Champion
Champion

Hi,

I think you're looking to connect two tables, right ?

trishita
Creator III
Creator III
Author

They are already connected with a key survey id

balabhaskarqlik

May be try like this:

GeneralInfo:

Load

    *

From GeneralInfo.txt;

ABC:

Mapping Load

FUELTYPE,

XYZ

Resident GeneralInfo;

SummaryTable:

Load

A,

B,

ApplyMap('ABC',FUELTYPE,'UnKnown') as FUELTYPE,

C,

D

From SummaryTable.txt;