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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Dolly123
Creator II
Creator II

ques

How to add multiple columns in apply map in qliksense ?

Labels (1)
5 Replies
micheledenardi
Specialist II
Specialist II

Can you be more specified?

Usually an ApplyMap works like:

MappingTale:
Mapping
Load 
 KeyField,
 MapField
From MapQvd.qvd(qvd);

Table:
Load
 ApplyMap('MappingTale',KeyField) as MappedField,
 ...,
From Table.qvd(qvd);
Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.
Dolly123
Creator II
Creator II
Author

more than 2 columns or 3 col 

micheledenardi
Specialist II
Specialist II

You can add multiple ApplyMap in the same load according to the amount of data you have to map

Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.
Dolly123
Creator II
Creator II
Author

how to write any example

micheledenardi
Specialist II
Specialist II

FirstMappingTale:
Mapping
Load 
 KeyField1,
 MapField1
From FirstMapQvd.qvd(qvd);

SecondMappingTale:
Mapping
Load 
 KeyField2,
 MapField2
From SecondMapQvd.qvd(qvd);

ThirdMappingTale:
Mapping
Load 
 KeyField3,
 MapField3
From ThirdMapQvd.qvd(qvd);

Table:
Load
 ApplyMap('FirstMappingTale',KeyField1) as MappedField1,
 ApplyMap('SecondMappingTale',KeyField2) as MappedField2,
 ApplyMap('ThirdMappingTale',KeyField3) as MappedField3,
 ...,
From Table.qvd(qvd);
Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.