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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
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

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);