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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Mapping

Plz any one Explaine me how to Use mapping function for perticular Type

Ex ; I have 3 Partner type

       LES, RD, SRD

      I need to apply Mapping differently for Each Partners

Labels (1)
10 Replies
arsal_90
Creator III
Creator III

Use Mapping Load

Mapping_Partner:

Mapping LOAD Partner Type,

     PartnerID

FROM

Partner.qvd

(qvd);

Step 2: Apply this map to transaction table.

Transactions:

LOAD

    CustomerID,

     ProductID,

    Amount,

    ApplyMap ('Mapping_Partner', PartnerID,'Unknown')

FROM

Transactions.qvd

(qvd);