Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

ApplyMap(HOW TO GET TRANSATION*CURRENCYRATE)


tab1:
currencycode,curecyrate
EUR,0.8
IND,0.4
cad,5.2

TAB2:
vendocode,Currencycode, transamt
111,CAD,700
112,USD,900,
113,UND,500

in second table get the amount transamt* currencyrate value...using
applymap..

1 Solution

Accepted Solutions
Not applicable
Author

Hi arunreddy ,

Check the attached example application

tab1:

mapping LOAD

currencycode,

currencyrate

FROM

Book1.xlsx

(ooxml, embedded labels, table is tab1);


tab2:

LOAD vendercode,

currencycode,

transamt,

applymap('tab1',currencycode) as currencyrate

FROM

Book1.xlsx

(ooxml, embedded labels, table is tab2);



View solution in original post

2 Replies
Not applicable
Author

Hi arunreddy ,

Check the attached example application

tab1:

mapping LOAD

currencycode,

currencyrate

FROM

Book1.xlsx

(ooxml, embedded labels, table is tab1);


tab2:

LOAD vendercode,

currencycode,

transamt,

applymap('tab1',currencycode) as currencyrate

FROM

Book1.xlsx

(ooxml, embedded labels, table is tab2);



Anonymous
Not applicable
Author

Thanks nilupaboralessa.i get the result what you sent.

thanks for reply.