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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

what is mapping load?

hi give me simple example for mapping load.

4 Replies
oknotsen
Master III
Master III

See help:

Mapping ‒ QlikView

May you live in interesting times!
vikasmahajan

Apply Map

Create a Sub Group

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Chanty4u
MVP
MVP

kkkumar82
Specialist III
Specialist III

EMPIDNameDeptId
101Kiran10
102Sunny20
103Kumar30

DeptIdDName
10IT
20MBA
30MCA

Consider you have two tables and loaded them into Qlikview and the two tables with be associated with DeptId, now if I want to load the Dname values into the first table by removing the second table completely from the data model then we use mapping load at this situations as below

Dept:

Mapping Load

DeptId,

Dname

from Dept;

Emp:

Load

EMPID,

Name,

DeptID,

Applymap('Dept',DeptID) as Dname

from emps;

The second table while loading will bring all the Dnames from the first table to the second table and after loading you won't find the first table in the data model.

There are some more advantages of using Applymap see the following link from Qlik Design group.

Don't join - use Applymap instead

Hope it helps you

Kiran Kumar