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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasmahajan

Apply Mapping question

Dear All,

Find attachment of  qvw  can any one help me to achive APPLY MAP function , I want to add base division in transaction table.

Thanks

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.
1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

prodmast:

mapping LOAD [Product Code],

             [Base Divison]

FROM

testdata.xlsx

(ooxml, embedded labels, table is PRODMAST);

trn:

LOAD [Invoice No],

     [Invoice Date],

     [Product Code] as prod,

     Product,

     Division,

     [Invoice Qty],

     [Bonus Qty],

     [Gross Sales  Amt],

     ApplyMap('prodmast', [Product Code]) AS BaseDiv

FROM

testdata.xlsx

(ooxml, embedded labels, table is Sheet1);

View solution in original post

2 Replies
giakoum
Partner - Master II
Partner - Master II

prodmast:

mapping LOAD [Product Code],

             [Base Divison]

FROM

testdata.xlsx

(ooxml, embedded labels, table is PRODMAST);

trn:

LOAD [Invoice No],

     [Invoice Date],

     [Product Code] as prod,

     Product,

     Division,

     [Invoice Qty],

     [Bonus Qty],

     [Gross Sales  Amt],

     ApplyMap('prodmast', [Product Code]) AS BaseDiv

FROM

testdata.xlsx

(ooxml, embedded labels, table is Sheet1);

vikasmahajan
Author

Thanks

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.